aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-02-11 21:46:13 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:32 +0800
commit49a9fc336f6d55dc2c4291e095e90e7a9e2280d4 (patch)
treed94c6b3d935c71dee77e8733522638455d794458
parentd73b993feb9b5aaaf6bf424cdf9d7e44b5a5896e (diff)
downloadgsoc2013-evolution-49a9fc336f6d55dc2c4291e095e90e7a9e2280d4.tar
gsoc2013-evolution-49a9fc336f6d55dc2c4291e095e90e7a9e2280d4.tar.gz
gsoc2013-evolution-49a9fc336f6d55dc2c4291e095e90e7a9e2280d4.tar.bz2
gsoc2013-evolution-49a9fc336f6d55dc2c4291e095e90e7a9e2280d4.tar.lz
gsoc2013-evolution-49a9fc336f6d55dc2c4291e095e90e7a9e2280d4.tar.xz
gsoc2013-evolution-49a9fc336f6d55dc2c4291e095e90e7a9e2280d4.tar.zst
gsoc2013-evolution-49a9fc336f6d55dc2c4291e095e90e7a9e2280d4.zip
Bug #638057 - Evolution --express doesn't remember status bar setting
-rw-r--r--shell/e-shell-window-private.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c
index 1c9ee99de0..6ad1875bd0 100644
--- a/shell/e-shell-window-private.c
+++ b/shell/e-shell-window-private.c
@@ -427,20 +427,14 @@ e_shell_window_private_constructed (EShellWindow *shell_window)
key = "/apps/evolution/shell/view_defaults/sidebar_visible";
gconf_bridge_bind_property (bridge, key, object, "sidebar-visible");
- if (e_shell_get_express_mode (shell)) {
- const gchar *active_view;
- gboolean taskbar_visible;
+ object = G_OBJECT (shell_window);
+ key = "/apps/evolution/shell/view_defaults/statusbar_visible";
+ gconf_bridge_bind_property (bridge, key, object, "taskbar-visible");
- active_view = e_shell_window_get_active_view (shell_window);
- taskbar_visible = (g_strcmp0 (active_view, "mail") == 0);
+ if (e_shell_get_express_mode (shell)) {
e_shell_window_set_switcher_visible (shell_window, FALSE);
- e_shell_window_set_taskbar_visible (shell_window, taskbar_visible);
} else {
object = G_OBJECT (shell_window);
- key = "/apps/evolution/shell/view_defaults/statusbar_visible";
- gconf_bridge_bind_property (bridge, key, object, "taskbar-visible");
-
- object = G_OBJECT (shell_window);
key = "/apps/evolution/shell/view_defaults/buttons_visible";
gconf_bridge_bind_property (bridge, key, object, "switcher-visible");
}