[evolution] Bug 620044 - Reply and Forward actions should have "is-important" set
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Bug 620044 - Reply and Forward actions should have "is-important" set
- Date: Sat, 29 May 2010 22:48:31 +0000 (UTC)
commit da3b1942ea34514871a404b1530ff785d0e4e549
Author: Matthew Barnes <mbarnes redhat com>
Date: Sat May 29 18:47:51 2010 -0400
Bug 620044 - Reply and Forward actions should have "is-important" set
mail/e-mail-reader.c | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
---
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c
index 70bed6b..5475c40 100644
--- a/mail/e-mail-reader.c
+++ b/mail/e-mail-reader.c
@@ -2630,6 +2630,10 @@ e_mail_reader_init (EMailReader *reader)
action = e_mail_reader_get_action (reader, action_name);
g_object_set (action, "short-label", _("Delete"), NULL);
+ action_name = "mail-forward";
+ action = e_mail_reader_get_action (reader, action_name);
+ g_object_set (action, "is-important", TRUE, NULL);
+
action_name = "mail-next";
action = e_mail_reader_get_action (reader, action_name);
g_object_set (action, "short-label", _("Next"), NULL);
@@ -2638,9 +2642,15 @@ e_mail_reader_init (EMailReader *reader)
action = e_mail_reader_get_action (reader, action_name);
g_object_set (action, "short-label", _("Previous"), NULL);
+ action_name = "mail-reply-all";
+ action = e_mail_reader_get_action (reader, action_name);
+ g_object_set (action, "is-important", TRUE, NULL);
+
action_name = "mail-reply-sender";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "short-label", _("Reply"), NULL);
+ g_object_set (
+ action, "is-important", TRUE,
+ "short-label", _("Reply"), NULL);
action_name = "add-to-address-book";
action = e_web_view_get_action (web_view, action_name);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]