From da3b1942ea34514871a404b1530ff785d0e4e549 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 29 May 2010 18:47:51 -0400 Subject: Bug 620044 - Reply and Forward actions should have "is-important" set --- mail/e-mail-reader.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'mail/e-mail-reader.c') 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); -- cgit v1.2.3