aboutsummaryrefslogtreecommitdiffstats
path: root/shell/importer
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-10-23 03:16:48 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-10-23 03:16:48 +0800
commitdf3238a7351f086254235741f417de24770aa2b8 (patch)
treed9d93e95b8d1e128d1e930a16b821eaa99ee386f /shell/importer
parentb7eeda03e9d59bb774a6bb37c92af02a42719ffa (diff)
downloadgsoc2013-evolution-df3238a7351f086254235741f417de24770aa2b8.tar
gsoc2013-evolution-df3238a7351f086254235741f417de24770aa2b8.tar.gz
gsoc2013-evolution-df3238a7351f086254235741f417de24770aa2b8.tar.bz2
gsoc2013-evolution-df3238a7351f086254235741f417de24770aa2b8.tar.lz
gsoc2013-evolution-df3238a7351f086254235741f417de24770aa2b8.tar.xz
gsoc2013-evolution-df3238a7351f086254235741f417de24770aa2b8.tar.zst
gsoc2013-evolution-df3238a7351f086254235741f417de24770aa2b8.zip
Make the scrolled window have a GTK_SHADOW_IN shadow.
* importer/intelligent.c (create_gui): Make the scrolled window have a GTK_SHADOW_IN shadow. * e-shell-window.c (setup_widgets): Make the notebooks not have borders. (setup_widgets): Fix typo: e_get_language_list() returns a GSList, not a GList. svn path=/trunk/; revision=22995
Diffstat (limited to 'shell/importer')
-rw-r--r--shell/importer/intelligent.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c
index 1eee3c238e..d8c8c0b918 100644
--- a/shell/importer/intelligent.c
+++ b/shell/importer/intelligent.c
@@ -219,6 +219,7 @@ create_gui (GList *importers)
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw),
GTK_POLICY_AUTOMATIC,
GTK_POLICY_AUTOMATIC);
+ gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), GTK_SHADOW_IN);
gtk_widget_set_size_request (sw, 300, 150);
gtk_container_add (GTK_CONTAINER (sw), clist);
gtk_box_pack_start (GTK_BOX (hbox), sw, TRUE, TRUE, 0);