From bafba91e9d2e3eca69f06713ae6162e537047cf1 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 29 Oct 2009 10:41:57 -0400 Subject: Bug 600019 - Menu glitches when an account name is selected --- modules/mail/e-mail-shell-view.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'modules/mail') diff --git a/modules/mail/e-mail-shell-view.c b/modules/mail/e-mail-shell-view.c index 7ce6833463..346d0fed35 100644 --- a/modules/mail/e-mail-shell-view.c +++ b/modules/mail/e-mail-shell-view.c @@ -536,6 +536,18 @@ mail_shell_view_update_actions (EShellView *shell_view) folder_tree_and_message_list_agree; gtk_action_set_sensitive (action, sensitive); + action = ACTION (MAIL_FOLDER_SELECT_ALL); + sensitive = !folder_is_store; + gtk_action_set_sensitive (action, sensitive); + + action = ACTION (MAIL_FOLDER_SELECT_THREAD); + sensitive = !folder_is_store; + gtk_action_set_sensitive (action, sensitive); + + action = ACTION (MAIL_FOLDER_SELECT_SUBTHREAD); + sensitive = !folder_is_store; + gtk_action_set_sensitive (action, sensitive); + action = ACTION (MAIL_FOLDER_UNSUBSCRIBE); sensitive = !folder_is_store && folder_can_be_deleted; gtk_action_set_sensitive (action, sensitive); -- cgit