aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-private.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-05-29 04:17:30 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-05-29 04:17:30 +0800
commit2cb330eb0978689dd2535c70be08fc01c0e05379 (patch)
tree40a2b094519f771f0607964a0ce4ccc060b4c3c8 /shell/e-shell-window-private.c
parent732e7096a18a2e2bb9074bdf8026af037d9f8685 (diff)
downloadgsoc2013-evolution-2cb330eb0978689dd2535c70be08fc01c0e05379.tar
gsoc2013-evolution-2cb330eb0978689dd2535c70be08fc01c0e05379.tar.gz
gsoc2013-evolution-2cb330eb0978689dd2535c70be08fc01c0e05379.tar.bz2
gsoc2013-evolution-2cb330eb0978689dd2535c70be08fc01c0e05379.tar.lz
gsoc2013-evolution-2cb330eb0978689dd2535c70be08fc01c0e05379.tar.xz
gsoc2013-evolution-2cb330eb0978689dd2535c70be08fc01c0e05379.tar.zst
gsoc2013-evolution-2cb330eb0978689dd2535c70be08fc01c0e05379.zip
Revert "Bug #608203 - Left pane of mailer window is really narrow at startup"
This reverts commit 0cdd9484fec0b1fec0801df7d7e0b05c6544ba9b. Causes the Mail window to erroneously switch to Contacts when opening the Contacts window in express mode.
Diffstat (limited to 'shell/e-shell-window-private.c')
-rw-r--r--shell/e-shell-window-private.c34
1 files changed, 16 insertions, 18 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c
index 7bcf069408..7e7185963e 100644
--- a/shell/e-shell-window-private.c
+++ b/shell/e-shell-window-private.c
@@ -412,24 +412,6 @@ e_shell_window_private_constructed (EShellWindow *shell_window)
bridge = gconf_bridge_get ();
- /* First restore window size, then the rest */
-
- /* Configure the initial size and position of the window by way
- * of either a user-supplied geometry string or the last recorded
- * values. Note that if a geometry string is applied, the window
- * size and position are -not- recorded. */
- if (priv->geometry != NULL) {
- if (!gtk_window_parse_geometry (window, priv->geometry))
- g_printerr (
- "Failed to parse geometry '%s'\n",
- priv->geometry);
- g_free (priv->geometry);
- priv->geometry = NULL;
- } else {
- key = "/apps/evolution/shell/view_defaults/window";
- gconf_bridge_bind_window (bridge, key, window, TRUE, TRUE);
- }
-
object = G_OBJECT (shell_window);
key = "/apps/evolution/shell/view_defaults/component_id";
gconf_bridge_bind_property (bridge, key, object, "active-view");
@@ -464,6 +446,22 @@ e_shell_window_private_constructed (EShellWindow *shell_window)
key = "/apps/evolution/shell/view_defaults/toolbar_visible";
gconf_bridge_bind_property (bridge, key, object, "toolbar-visible");
+ /* Configure the initial size and position of the window by way
+ * of either a user-supplied geometry string or the last recorded
+ * values. Note that if a geometry string is applied, the window
+ * size and position are -not- recorded. */
+ if (priv->geometry != NULL) {
+ if (!gtk_window_parse_geometry (window, priv->geometry))
+ g_printerr (
+ "Failed to parse geometry '%s'\n",
+ priv->geometry);
+ g_free (priv->geometry);
+ priv->geometry = NULL;
+ } else {
+ key = "/apps/evolution/shell/view_defaults/window";
+ gconf_bridge_bind_window (bridge, key, window, TRUE, TRUE);
+ }
+
shell_window_init_switcher_style (shell_window);
id = "org.gnome.evolution.shell";