aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-10-23 01:57:52 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-10-23 01:57:52 +0800
commitec6356db4e31a893ea433be11f06fe67cc9bfb3e (patch)
treed7a96f5929ebb3798d383dbe9f71ca386626ddc2 /calendar/gui
parent18c2a6bc350d87c736709451b4ef3f9e0d15d2cf (diff)
downloadgsoc2013-evolution-ec6356db4e31a893ea433be11f06fe67cc9bfb3e.tar
gsoc2013-evolution-ec6356db4e31a893ea433be11f06fe67cc9bfb3e.tar.gz
gsoc2013-evolution-ec6356db4e31a893ea433be11f06fe67cc9bfb3e.tar.bz2
gsoc2013-evolution-ec6356db4e31a893ea433be11f06fe67cc9bfb3e.tar.lz
gsoc2013-evolution-ec6356db4e31a893ea433be11f06fe67cc9bfb3e.tar.xz
gsoc2013-evolution-ec6356db4e31a893ea433be11f06fe67cc9bfb3e.tar.zst
gsoc2013-evolution-ec6356db4e31a893ea433be11f06fe67cc9bfb3e.zip
(impl_createControls): Set the
scrollbar policy to "automatic" for both the horizontal and vertical scrollbars around the source selector. svn path=/trunk/; revision=22991
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/calendar-component.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c
index 3e8782f45b..1dafda8d76 100644
--- a/calendar/gui/calendar-component.c
+++ b/calendar/gui/calendar-component.c
@@ -160,6 +160,8 @@ impl_createControls (PortableServer_Servant servant,
selector_scrolled_window = gtk_scrolled_window_new (NULL, NULL);
gtk_container_add (GTK_CONTAINER (selector_scrolled_window), selector);
+ gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (selector_scrolled_window),
+ GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
gtk_widget_show (selector_scrolled_window);
sidebar_control = bonobo_control_new (selector_scrolled_window);