diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-05-30 06:47:51 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-05-30 06:47:51 +0800 |
commit | da3b1942ea34514871a404b1530ff785d0e4e549 (patch) | |
tree | 298c82a6aadbc62eb529ad47460939eed56d623d /mail | |
parent | 0f474eaef3ac90f9dd5eb946bca8b36040f4c85e (diff) | |
download | gsoc2013-evolution-da3b1942ea34514871a404b1530ff785d0e4e549.tar.gz gsoc2013-evolution-da3b1942ea34514871a404b1530ff785d0e4e549.tar.zst gsoc2013-evolution-da3b1942ea34514871a404b1530ff785d0e4e549.zip |
Bug 620044 - Reply and Forward actions should have "is-important" set
Diffstat (limited to 'mail')
-rw-r--r-- | 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 70bed6b92e..5475c405ff 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); |