aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-cal-shell-content.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 /modules/calendar/e-cal-shell-content.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 'modules/calendar/e-cal-shell-content.c')
-rw-r--r--modules/calendar/e-cal-shell-content.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/calendar/e-cal-shell-content.c b/modules/calendar/e-cal-shell-content.c
index 9248ea8334..6b1e857894 100644
--- a/modules/calendar/e-cal-shell-content.c
+++ b/modules/calendar/e-cal-shell-content.c
@@ -356,14 +356,14 @@ cal_shell_content_constructed (GObject *object)
widget = gtk_notebook_new ();
gtk_notebook_set_show_tabs (GTK_NOTEBOOK (widget), FALSE);
gtk_notebook_set_show_border (GTK_NOTEBOOK (widget), FALSE);
- gtk_paned_pack1 (GTK_PANED (container), widget, FALSE, TRUE);
+ gtk_paned_pack1 (GTK_PANED (container), widget, TRUE, FALSE);
priv->notebook = g_object_ref (widget);
gtk_widget_show (widget);
/* FIXME Need to deal with saving and restoring the position.
* Month view has its own position. */
widget = gtk_vpaned_new ();
- gtk_paned_pack2 (GTK_PANED (container), widget, TRUE, TRUE);
+ gtk_paned_pack2 (GTK_PANED (container), widget, FALSE, TRUE);
priv->vpaned = g_object_ref (widget);
gtk_widget_show (widget);