diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 01:49:10 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 01:49:10 +0800 |
commit | 18c2a6bc350d87c736709451b4ef3f9e0d15d2cf (patch) | |
tree | 1b87f381e1cd57bfe8b46bfb728b4146884261ba /addressbook | |
parent | ec0f879ca6e7b41d8bd850e37180c3fa92c35e88 (diff) | |
download | gsoc2013-evolution-18c2a6bc350d87c736709451b4ef3f9e0d15d2cf.tar.gz gsoc2013-evolution-18c2a6bc350d87c736709451b4ef3f9e0d15d2cf.tar.zst gsoc2013-evolution-18c2a6bc350d87c736709451b4ef3f9e0d15d2cf.zip |
(impl_createControls): Set
the GtkScrolledWindow scrollbar policy to "automatic" for both the
horizontal and the vertical scrollbar.
svn path=/trunk/; revision=22990
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 2e9b191f0a..1aaaccba6b 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2003-10-22 Ettore Perazzoli <ettore@ximian.com> + * gui/component/addressbook-component.c (impl_createControls): Set + the GtkScrolledWindow scrollbar policy to "automatic" for both the + horizontal and the vertical scrollbar. + +2003-10-22 Ettore Perazzoli <ettore@ximian.com> + * gui/component/GNOME_Evolution_Addressbook.server.in.in: Add an "evolution:button_label" property on the component for use in the shell. diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index c323a1bd78..fe3cfa3a58 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -89,6 +89,8 @@ impl_createControls (PortableServer_Servant servant, gtk_widget_show (selector); selector_scrolled_window = gtk_scrolled_window_new (NULL, NULL); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (selector_scrolled_window), + GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_container_add (GTK_CONTAINER (selector_scrolled_window), selector); gtk_widget_show (selector_scrolled_window); |