aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-10-23 03:15:36 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-10-23 03:15:36 +0800
commitb7eeda03e9d59bb774a6bb37c92af02a42719ffa (patch)
tree56dcbbdaae746a556c0f9265e2783a89a8963468 /calendar/gui/dialogs
parent36ea89fbb9c7964f2f2b5efe0a7f943e38b5525f (diff)
downloadgsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.tar
gsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.tar.gz
gsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.tar.bz2
gsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.tar.lz
gsoc2013-evolution-b7eeda03e9d59bb774a6bb37c92af02a42719ffa.tar.xz
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/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/meeting-page.c1
1 files changed, 1 insertions, 0 deletions
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);