diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-28 19:39:43 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-28 19:39:43 +0800 |
commit | dd79fab2f6725e00bdf620b6b6a368d823f7c5b8 (patch) | |
tree | 9a91057690f743f6ba191b081235817b3592decf | |
parent | 0b8f99546e3c2b1e2cc9086e077dee0f9188bd41 (diff) | |
download | gsoc2013-evolution-dd79fab2f6725e00bdf620b6b6a368d823f7c5b8.tar.gz gsoc2013-evolution-dd79fab2f6725e00bdf620b6b6a368d823f7c5b8.tar.zst gsoc2013-evolution-dd79fab2f6725e00bdf620b6b6a368d823f7c5b8.zip |
Change the appearance of the scroll frame in the folder creation
dialog to have an "in" shadow.
svn path=/trunk/; revision=7873
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-folder-creation-dialog.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 4780151988..00aebf1ff7 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-01-28 Ettore Perazzoli <ettore@ximian.com> + + * e-shell-folder-creation-dialog.c (add_storage_set_view): Set the + shadow type to be `GTK_SHADOW_IN' in the EScrollFrame. + 2001-01-27 Ettore Perazzoli <ettore@ximian.com> * e-shell-view.c (storage_set_view_box_button_release_event_cb): diff --git a/shell/e-shell-folder-creation-dialog.c b/shell/e-shell-folder-creation-dialog.c index a05fcfea76..9778974614 100644 --- a/shell/e-shell-folder-creation-dialog.c +++ b/shell/e-shell-folder-creation-dialog.c @@ -1,7 +1,7 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* e-shell.c * - * Copyright (C) 2000 Helix Code, Inc. + * Copyright (C) 2000, 2001 Ximian, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -269,6 +269,7 @@ add_storage_set_view (GtkWidget *dialog, scroll_frame = e_scroll_frame_new (NULL, NULL); e_scroll_frame_set_policy (E_SCROLL_FRAME (scroll_frame), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + e_scroll_frame_set_shadow_type (E_SCROLL_FRAME (scroll_frame), GTK_SHADOW_IN); gtk_box_pack_start (GTK_BOX (vbox), scroll_frame, TRUE, TRUE, 0); gtk_container_add (GTK_CONTAINER (scroll_frame), storage_set_view); |