diff options
author | Michael Meeks <michael.meeks@novell.com> | 2010-04-28 00:47:57 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-04-28 00:47:57 +0800 |
commit | 2d68130cad1642c1995f3d4e8c3bc18b77977213 (patch) | |
tree | dc80e9603bdac23747ad5a5defc35fc1a2025ce1 /shell/e-shell-window-private.c | |
parent | 5b21823d0e5c5a6ad927a180fb9aa8b9419f6612 (diff) | |
download | gsoc2013-evolution-2d68130cad1642c1995f3d4e8c3bc18b77977213.tar gsoc2013-evolution-2d68130cad1642c1995f3d4e8c3bc18b77977213.tar.gz gsoc2013-evolution-2d68130cad1642c1995f3d4e8c3bc18b77977213.tar.bz2 gsoc2013-evolution-2d68130cad1642c1995f3d4e8c3bc18b77977213.tar.lz gsoc2013-evolution-2d68130cad1642c1995f3d4e8c3bc18b77977213.tar.xz gsoc2013-evolution-2d68130cad1642c1995f3d4e8c3bc18b77977213.tar.zst gsoc2013-evolution-2d68130cad1642c1995f3d4e8c3bc18b77977213.zip |
don't bridge to the active-view gconf setting
Diffstat (limited to 'shell/e-shell-window-private.c')
-rw-r--r-- | shell/e-shell-window-private.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c index be5064a698..6878ff7456 100644 --- a/shell/e-shell-window-private.c +++ b/shell/e-shell-window-private.c @@ -432,7 +432,9 @@ e_shell_window_private_constructed (EShellWindow *shell_window) object = G_OBJECT (shell_window); key = "/apps/evolution/shell/view_defaults/component_id"; - gconf_bridge_bind_property (bridge, key, object, "active-view"); + g_object_set (object, "active-view", + gconf_client_get_string (e_shell_get_gconf_client (shell), key, NULL), + NULL); object = G_OBJECT (priv->content_pane); key = "/apps/evolution/shell/view_defaults/folder_bar/width"; |