From 2511473c17a7d5502c359c4f457faf65e45c2569 Mon Sep 17 00:00:00 2001 From: Srinivasa Ragavan Date: Mon, 4 Jul 2005 06:05:01 +0000 Subject: Added vertical scrollbar policy of list view to always so that it does not 2005-07-04 Srinivasa Ragavan * gui/dialogs/meeting-page.c: (meeting_page_construct) Added vertical scrollbar policy of list view to always so that it does not extend the view when there are more contacts. svn path=/trunk/; revision=29623 --- calendar/ChangeLog | 6 ++++++ calendar/gui/dialogs/meeting-page.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 976c414faa..1d22200974 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2005-07-04 Srinivasa Ragavan + + * gui/dialogs/meeting-page.c: (meeting_page_construct) Added + vertical scrollbar policy of list view to always so that it does + not extend the view when there are more contacts. + 2005-07-02 Chenthill Palanisamy * gui/e-meeting-list-view.c: (process_section): diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c index 86a7df96de..f7046853e1 100644 --- a/calendar/gui/dialogs/meeting-page.c +++ b/calendar/gui/dialogs/meeting-page.c @@ -1025,7 +1025,7 @@ meeting_page_construct (MeetingPage *mpage, EMeetingStore *ems, gtk_widget_show (GTK_WIDGET (priv->list_view)); sw = gtk_scrolled_window_new (NULL, NULL); - gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), GTK_SHADOW_IN); gtk_widget_show (sw); gtk_container_add (GTK_CONTAINER (sw), GTK_WIDGET (priv->list_view)); -- cgit