aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2003-05-20 02:51:06 +0800
committerAnna Dirks <anna@src.gnome.org>2003-05-20 02:51:06 +0800
commitf6f73451c5f6e7639416eb980265a60a1cb84481 (patch)
tree89cd5472ac5dbfb24fba2993c3523c55bd0c7c6c
parent30551d3f831b50298bab6a4feedf1c598f02f146 (diff)
downloadgsoc2013-evolution-f6f73451c5f6e7639416eb980265a60a1cb84481.tar
gsoc2013-evolution-f6f73451c5f6e7639416eb980265a60a1cb84481.tar.gz
gsoc2013-evolution-f6f73451c5f6e7639416eb980265a60a1cb84481.tar.bz2
gsoc2013-evolution-f6f73451c5f6e7639416eb980265a60a1cb84481.tar.lz
gsoc2013-evolution-f6f73451c5f6e7639416eb980265a60a1cb84481.tar.xz
gsoc2013-evolution-f6f73451c5f6e7639416eb980265a60a1cb84481.tar.zst
gsoc2013-evolution-f6f73451c5f6e7639416eb980265a60a1cb84481.zip
Added HIG-appropriate spacing/ padding to the main hbox into which the
2003-05-19 Anna Marie Dirks <anna@ximian.com> * e-multi-config-dialog.c (init): Added HIG-appropriate spacing/ padding to the main hbox into which the icons and page widgets are packed. svn path=/trunk/; revision=21265
-rw-r--r--widgets/misc/ChangeLog6
-rw-r--r--widgets/misc/e-multi-config-dialog.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index 2881f5f44e..298eb82748 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,9 @@
+2003-05-19 Anna Marie Dirks <anna@ximian.com>
+
+ * e-multi-config-dialog.c (init): Added HIG-appropriate spacing/
+ padding to the main hbox into which the icons and page widgets
+ are packed.
+
2003-05-19 Larry Ewing <lewing@ximian.com>
* e-charset-picker.c: port to GtkDialog.
diff --git a/widgets/misc/e-multi-config-dialog.c b/widgets/misc/e-multi-config-dialog.c
index 0263d7958f..19792eed22 100644
--- a/widgets/misc/e-multi-config-dialog.c
+++ b/widgets/misc/e-multi-config-dialog.c
@@ -110,8 +110,7 @@ create_page_container (const char *description,
{
GtkWidget *vbox;
- vbox = gtk_vbox_new (FALSE, 3);
- gtk_container_set_border_width (GTK_CONTAINER (vbox), 6);
+ vbox = gtk_vbox_new (FALSE, 0);
#if 0
label = e_clipped_label_new (description);
@@ -366,7 +365,8 @@ init (EMultiConfigDialog *multi_config_dialog)
ECell *text;
ECell *vbox;
- hbox = gtk_hbox_new (FALSE, 2);
+ hbox = gtk_hbox_new (FALSE, 6);
+ gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
dialog_vbox = GTK_DIALOG (multi_config_dialog)->vbox;
gtk_box_set_spacing (GTK_BOX (dialog_vbox), 6);