aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-private.c
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2010-03-31 22:12:23 +0800
committerMichael Meeks <michael.meeks@novell.com>2010-04-07 19:26:52 +0800
commit812724b03432af4cc14f84b81fe5f03b4df27d9f (patch)
treed05b3d0dc4c5c09d3afa24fd2e809aa0d612d37f /shell/e-shell-window-private.c
parent51a35cd8be6904a3bb477eccc544a186a66b541c (diff)
downloadgsoc2013-evolution-812724b03432af4cc14f84b81fe5f03b4df27d9f.tar
gsoc2013-evolution-812724b03432af4cc14f84b81fe5f03b4df27d9f.tar.gz
gsoc2013-evolution-812724b03432af4cc14f84b81fe5f03b4df27d9f.tar.bz2
gsoc2013-evolution-812724b03432af4cc14f84b81fe5f03b4df27d9f.tar.lz
gsoc2013-evolution-812724b03432af4cc14f84b81fe5f03b4df27d9f.tar.xz
gsoc2013-evolution-812724b03432af4cc14f84b81fe5f03b4df27d9f.tar.zst
gsoc2013-evolution-812724b03432af4cc14f84b81fe5f03b4df27d9f.zip
Disable the status bar for all but the mail view.
Not implemented prettily, but cf. mail_shell_backend_window_created_cb getting invoked even for addressbok windows ...
Diffstat (limited to 'shell/e-shell-window-private.c')
-rw-r--r--shell/e-shell-window-private.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c
index 2d11259f5c..0b44aa866e 100644
--- a/shell/e-shell-window-private.c
+++ b/shell/e-shell-window-private.c
@@ -422,14 +422,17 @@ 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");
- object = G_OBJECT (shell_window);
- key = "/apps/evolution/shell/view_defaults/statusbar_visible";
- gconf_bridge_bind_property (bridge, key, object, "taskbar-visible");
-
if (e_shell_get_express_mode (shell)) {
+ const char *active_view = e_shell_window_get_active_view (shell_window);
e_shell_window_set_switcher_visible (shell_window, FALSE);
+ e_shell_window_set_taskbar_visible (shell_window, active_view &&
+ !strcmp (active_view, "mail"));
} 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");
}