diff options
author | Milan Crha <mcrha@redhat.com> | 2012-02-21 01:57:04 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-02-21 01:58:07 +0800 |
commit | 90d764399d43c1c9fce4da194a9dcf504960339a (patch) | |
tree | ffc60fad190aadba2ae297938a26048d9068f082 /modules | |
parent | 23f5773903d64a554d977ae7d0ebbaca73528f1f (diff) | |
download | gsoc2013-evolution-90d764399d43c1c9fce4da194a9dcf504960339a.tar gsoc2013-evolution-90d764399d43c1c9fce4da194a9dcf504960339a.tar.gz gsoc2013-evolution-90d764399d43c1c9fce4da194a9dcf504960339a.tar.bz2 gsoc2013-evolution-90d764399d43c1c9fce4da194a9dcf504960339a.tar.lz gsoc2013-evolution-90d764399d43c1c9fce4da194a9dcf504960339a.tar.xz gsoc2013-evolution-90d764399d43c1c9fce4da194a9dcf504960339a.tar.zst gsoc2013-evolution-90d764399d43c1c9fce4da194a9dcf504960339a.zip |
Account properties shown also on remote folders
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mail/e-mail-shell-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mail/e-mail-shell-view.c b/modules/mail/e-mail-shell-view.c index f0661cf524..6db94452b6 100644 --- a/modules/mail/e-mail-shell-view.c +++ b/modules/mail/e-mail-shell-view.c @@ -953,7 +953,7 @@ mail_shell_view_update_actions (EShellView *shell_view) gtk_action_set_sensitive (action, sensitive); action = ACTION (MAIL_ACCOUNT_PROPERTIES); - sensitive = account != NULL; + sensitive = account != NULL && folder_is_store; gtk_action_set_sensitive (action, sensitive); action = ACTION (MAIL_FLUSH_OUTBOX); |