diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2005-07-04 14:05:01 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2005-07-04 14:05:01 +0800 |
commit | 2511473c17a7d5502c359c4f457faf65e45c2569 (patch) | |
tree | 49b519ad670a03dfc14d44537cc0fa1bedd01015 | |
parent | b3378efef9a89a3fde07877f2cc46cf4825bfe1a (diff) | |
download | gsoc2013-evolution-2511473c17a7d5502c359c4f457faf65e45c2569.tar.gz gsoc2013-evolution-2511473c17a7d5502c359c4f457faf65e45c2569.tar.zst gsoc2013-evolution-2511473c17a7d5502c359c4f457faf65e45c2569.zip |
Added vertical scrollbar policy of list view to always so that it does not
2005-07-04 Srinivasa Ragavan <sragavan@novell.com>
* 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
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/meeting-page.c | 2 |
2 files changed, 7 insertions, 1 deletions
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 <sragavan@novell.com> + + * 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 <pchenthill@novell.com> * 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)); |