aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-cal-shell-content.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-12-20 12:54:54 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-12-20 12:54:54 +0800
commitf989e5d9702ae54343cf28cecae1d045b416afb6 (patch)
tree5625520ae57bb8dad93fdae5e5863a28bea5b2c4 /modules/calendar/e-cal-shell-content.c
parent83a264cd7e6e28af8ea9ea3442693a2d409be458 (diff)
downloadgsoc2013-evolution-f989e5d9702ae54343cf28cecae1d045b416afb6.tar
gsoc2013-evolution-f989e5d9702ae54343cf28cecae1d045b416afb6.tar.gz
gsoc2013-evolution-f989e5d9702ae54343cf28cecae1d045b416afb6.tar.bz2
gsoc2013-evolution-f989e5d9702ae54343cf28cecae1d045b416afb6.tar.lz
gsoc2013-evolution-f989e5d9702ae54343cf28cecae1d045b416afb6.tar.xz
gsoc2013-evolution-f989e5d9702ae54343cf28cecae1d045b416afb6.tar.zst
gsoc2013-evolution-f989e5d9702ae54343cf28cecae1d045b416afb6.zip
BugĀ 596947 - Calendar view forgets memo pane height
Diffstat (limited to 'modules/calendar/e-cal-shell-content.c')
-rw-r--r--modules/calendar/e-cal-shell-content.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/calendar/e-cal-shell-content.c b/modules/calendar/e-cal-shell-content.c
index fcebf59ca5..3f56f01c61 100644
--- a/modules/calendar/e-cal-shell-content.c
+++ b/modules/calendar/e-cal-shell-content.c
@@ -383,7 +383,8 @@ cal_shell_content_constructed (GObject *object)
/* FIXME Need to deal with saving and restoring the position.
* Month view has its own position. */
- widget = gtk_vpaned_new ();
+ widget = e_paned_new (GTK_ORIENTATION_VERTICAL);
+ e_paned_set_fixed_resize (E_PANED (widget), FALSE);
gtk_paned_pack2 (GTK_PANED (container), widget, FALSE, TRUE);
priv->vpaned = g_object_ref (widget);
gtk_widget_show (widget);
@@ -517,8 +518,8 @@ cal_shell_content_constructed (GObject *object)
bridge = gconf_bridge_get ();
object = G_OBJECT (priv->vpaned);
- key = "/apps/evolution/calendar/display/vpane_position";
- gconf_bridge_bind_property_delayed (bridge, key, object, "position");
+ key = "/apps/evolution/calendar/display/tag_vpane_position";
+ gconf_bridge_bind_property_delayed (bridge, key, object, "proportion");
g_object_unref (memo_model);
g_object_unref (task_model);