diff options
author | Anna Marie Dirks <anna@ximian.com> | 2003-04-22 03:27:35 +0800 |
---|---|---|
committer | Anna Dirks <anna@src.gnome.org> | 2003-04-22 03:27:35 +0800 |
commit | 84a46595315c4303c65fc1856f736cc1f1ff06e4 (patch) | |
tree | c1ad11938dd3bfefb1c24e2d6715ab5b08b4bb11 /shell/e-shell-folder-creation-dialog.c | |
parent | 112d65ab8432eb820f7e84e1a3d514b21b51532d (diff) | |
download | gsoc2013-evolution-84a46595315c4303c65fc1856f736cc1f1ff06e4.tar.gz gsoc2013-evolution-84a46595315c4303c65fc1856f736cc1f1ff06e4.tar.zst gsoc2013-evolution-84a46595315c4303c65fc1856f736cc1f1ff06e4.zip |
Misc HIG-related tweaks, mostly spacing and padding related. Fixes 41008.
2003-04-21 Anna Marie Dirks <anna@ximian.com>
* glade/e-shell-folder-creation-dialog.glade: Misc HIG-related tweaks,
mostly spacing and padding related. Fixes 41008.
* e-shell-folder-creation-dialog.c (add_storage_set_view): Added
appropriate spacing to the main vbox of the folder creation dialog.
Partially fixes 41008.
svn path=/trunk/; revision=20907
Diffstat (limited to 'shell/e-shell-folder-creation-dialog.c')
-rw-r--r-- | shell/e-shell-folder-creation-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-folder-creation-dialog.c b/shell/e-shell-folder-creation-dialog.c index 97e3e0edaa..8390423850 100644 --- a/shell/e-shell-folder-creation-dialog.c +++ b/shell/e-shell-folder-creation-dialog.c @@ -349,7 +349,7 @@ add_storage_set_view (GtkWidget *dialog, scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_window), GTK_SHADOW_IN); - gtk_box_pack_start (GTK_BOX (vbox), scrolled_window, TRUE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (vbox), scrolled_window, TRUE, TRUE, 6); gtk_container_add (GTK_CONTAINER (scrolled_window), storage_set_view); |