diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 03:15:36 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 03:15:36 +0800 |
commit | b7eeda03e9d59bb774a6bb37c92af02a42719ffa (patch) | |
tree | 56dcbbdaae746a556c0f9265e2783a89a8963468 /calendar | |
parent | 36ea89fbb9c7964f2f2b5efe0a7f943e38b5525f (diff) | |
download | gsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.tar.gz gsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.tar.zst gsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.zip |
Make the scrolled window have a GTK_SHADOW_IN shadow. Likewise.
* gui/calendar-component.c (impl_createControls): Make the
scrolled window have a GTK_SHADOW_IN shadow.
* gui/dialogs/meeting-page.c (meeting_page_construct): Likewise.
svn path=/trunk/; revision=22994
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/calendar-component.c | 2 | ||||
-rw-r--r-- | calendar/gui/dialogs/meeting-page.c | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index c4545e8479..b53f7f665a 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,11 @@ 2003-10-22 Ettore Perazzoli <ettore@ximian.com> + * gui/calendar-component.c (impl_createControls): Make the + scrolled window have a GTK_SHADOW_IN shadow. + * gui/dialogs/meeting-page.c (meeting_page_construct): Likewise. + +2003-10-22 Ettore Perazzoli <ettore@ximian.com> + * gui/calendar-component.c (impl_createControls): Set the scrollbar policy to "automatic" for both the horizontal and vertical scrollbars around the source selector. diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 1dafda8d76..0ea1cf29e8 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -162,6 +162,8 @@ impl_createControls (PortableServer_Servant servant, 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_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (selector_scrolled_window), + GTK_SHADOW_IN); gtk_widget_show (selector_scrolled_window); sidebar_control = bonobo_control_new (selector_scrolled_window); diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c index 800b0d56c6..546baa8dc3 100644 --- a/calendar/gui/dialogs/meeting-page.c +++ b/calendar/gui/dialogs/meeting-page.c @@ -777,6 +777,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_shadow_type (GTK_SCROLLED_WINDOW (sw), GTK_SHADOW_IN); gtk_widget_show (sw); gtk_container_add (GTK_CONTAINER (sw), GTK_WIDGET (priv->list_view)); gtk_box_pack_start (GTK_BOX (priv->main), sw, TRUE, TRUE, 6); |