From 50a5e067d50806371110f54dce77628cbc548ab1 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 20 Jun 2012 14:36:42 -0400 Subject: Bug 678393 - Disable Properties for built-in mail stores --- modules/mail/e-mail-shell-view.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'modules/mail') diff --git a/modules/mail/e-mail-shell-view.c b/modules/mail/e-mail-shell-view.c index 6efc54ba9d..4d91a3dbd1 100644 --- a/modules/mail/e-mail-shell-view.c +++ b/modules/mail/e-mail-shell-view.c @@ -835,6 +835,7 @@ mail_shell_view_update_actions (EShellView *shell_view) gboolean folder_is_virtual; gboolean folder_has_unread_rec = FALSE; gboolean folder_tree_and_message_list_agree = TRUE; + gboolean store_is_builtin; gboolean store_is_subscribable; gboolean any_store_is_subscribable = FALSE; @@ -873,6 +874,8 @@ mail_shell_view_update_actions (EShellView *shell_view) (state & E_MAIL_SIDEBAR_FOLDER_IS_TRASH); folder_is_virtual = (state & E_MAIL_SIDEBAR_FOLDER_IS_VIRTUAL); + store_is_builtin = + (state & E_MAIL_SIDEBAR_STORE_IS_BUILTIN); store_is_subscribable = (state & E_MAIL_SIDEBAR_STORE_IS_SUBSCRIBABLE); @@ -972,9 +975,8 @@ mail_shell_view_update_actions (EShellView *shell_view) sensitive = folder_is_trash; gtk_action_set_sensitive (action, sensitive); - /* folder_is_store + folder_is_virtual == "Search Folders" */ action = ACTION (MAIL_ACCOUNT_PROPERTIES); - sensitive = (store != NULL) && folder_is_store && !folder_is_virtual; + sensitive = folder_is_store && !store_is_builtin; gtk_action_set_sensitive (action, sensitive); action = ACTION (MAIL_FLUSH_OUTBOX); -- cgit v1.2.3