aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-private.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-08-27 00:44:32 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-08-27 00:44:32 +0800
commitd46710704af21108c5e38fc793dc1ba5a3f50390 (patch)
tree27451059cb36802bc71f8d3d7d64592f6671e8bc /shell/e-shell-window-private.c
parentafc0306be8552a10b62a31955ef571fdb19edb10 (diff)
downloadgsoc2013-evolution-d46710704af21108c5e38fc793dc1ba5a3f50390.tar
gsoc2013-evolution-d46710704af21108c5e38fc793dc1ba5a3f50390.tar.gz
gsoc2013-evolution-d46710704af21108c5e38fc793dc1ba5a3f50390.tar.bz2
gsoc2013-evolution-d46710704af21108c5e38fc793dc1ba5a3f50390.tar.lz
gsoc2013-evolution-d46710704af21108c5e38fc793dc1ba5a3f50390.tar.xz
gsoc2013-evolution-d46710704af21108c5e38fc793dc1ba5a3f50390.tar.zst
gsoc2013-evolution-d46710704af21108c5e38fc793dc1ba5a3f50390.zip
Fix resize behavior of main window panes.
Now that I finally understand how the "resize" and "shrink" child properties in GtkPaned work. Was a real brain teaser for some reason.
Diffstat (limited to 'shell/e-shell-window-private.c')
-rw-r--r--shell/e-shell-window-private.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c
index 0012b18b54..959db3f55a 100644
--- a/shell/e-shell-window-private.c
+++ b/shell/e-shell-window-private.c
@@ -292,7 +292,7 @@ e_shell_window_private_init (EShellWindow *shell_window)
widget = gtk_notebook_new ();
gtk_notebook_set_show_tabs (GTK_NOTEBOOK (widget), FALSE);
gtk_notebook_set_show_border (GTK_NOTEBOOK (widget), FALSE);
- gtk_paned_pack2 (GTK_PANED (container), widget, TRUE, TRUE);
+ gtk_paned_pack2 (GTK_PANED (container), widget, TRUE, FALSE);
priv->content_notebook = g_object_ref (widget);
gtk_widget_show (widget);