diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-09-21 13:41:00 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-09-21 13:41:00 +0800 |
commit | 1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c (patch) | |
tree | 31a29b9a8bf52be5871c6ae47887065144be31d0 | |
parent | f9d32172c20dfc589084862d0ba42f5c01a848c3 (diff) | |
download | gsoc2013-evolution-1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c.tar gsoc2013-evolution-1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c.tar.gz gsoc2013-evolution-1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c.tar.bz2 gsoc2013-evolution-1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c.tar.lz gsoc2013-evolution-1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c.tar.xz gsoc2013-evolution-1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c.tar.zst gsoc2013-evolution-1c3cd6e2397dc84df83a78b0cbfe94d4f79ff67c.zip |
** Fix for bug #354775
svn path=/trunk/; revision=32804
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/calendar-component.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 33fb0d12c0..d0423c1eae 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2006-09-21 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #354775 + + * gui/calendar-component.c: (create_component_view): Fix to restore + the pane position. + 2006-09-18 Matthew Barnes <mbarnes@redhat.com> Fixes #351332 diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 271f0845fd..17824272b4 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -1366,7 +1366,7 @@ create_component_view (CalendarComponent *calendar_component) gtk_box_pack_start(GTK_BOX (vbox), selector_scrolled_window, TRUE, TRUE, 0); gtk_widget_show (vbox); - gtk_paned_pack1 (GTK_PANED (vpane), vbox, FALSE, TRUE); + gtk_paned_pack1 (GTK_PANED (vpane), vbox, FALSE, FALSE); component_view->sidebar_control = bonobo_control_new (vpane); @@ -1380,7 +1380,7 @@ create_component_view (CalendarComponent *calendar_component) component_view->calendar = (GnomeCalendar *) bonobo_control_get_widget (component_view->view_control); - gtk_paned_pack2 (GTK_PANED (vpane), gnome_calendar_get_tag (component_view->calendar), FALSE, TRUE); + gtk_paned_pack2 (GTK_PANED (vpane), gnome_calendar_get_tag (component_view->calendar), FALSE, FALSE); /* This signal is thrown if backends die - we update the selector */ g_signal_connect (component_view->calendar, "source_added", |