aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-multi-config-dialog.c
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-03-27 01:12:05 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-03-27 01:12:05 +0800
commitb4dc945f6e11216c642cc714a0492b4aefd92ae1 (patch)
tree09a31ba5c2fd52554038bfa44efa76590d0ff6ea /widgets/misc/e-multi-config-dialog.c
parent544e4f8061e5295005f265515a9459635e8f645b (diff)
downloadgsoc2013-evolution-b4dc945f6e11216c642cc714a0492b4aefd92ae1.tar
gsoc2013-evolution-b4dc945f6e11216c642cc714a0492b4aefd92ae1.tar.gz
gsoc2013-evolution-b4dc945f6e11216c642cc714a0492b4aefd92ae1.tar.bz2
gsoc2013-evolution-b4dc945f6e11216c642cc714a0492b4aefd92ae1.tar.lz
gsoc2013-evolution-b4dc945f6e11216c642cc714a0492b4aefd92ae1.tar.xz
gsoc2013-evolution-b4dc945f6e11216c642cc714a0492b4aefd92ae1.tar.zst
gsoc2013-evolution-b4dc945f6e11216c642cc714a0492b4aefd92ae1.zip
We don't need this really (class_init): We don't need to have our own
2004-03-26 Rodney Dawes <dobey@ximian.com> * e-shell-settings-dialog.c (impl_realize): We don't need this really (class_init): We don't need to have our own realize impl for setting the default window size of the dialog, especially since we are setting the size before we actually get realized, anyway (init): Set the dialog size here, and don't set the border width of the dialog 2004-03-26 Rodney Dawes <dobey@ximian.com> * e-multi-config-dialog.c (init): Remove the dialog separator Set the border widths of the dialog's vbox and action area to be more HIG-compliant Set the border width of the dialog's child to 12 for HIG-compliance svn path=/trunk/; revision=25197
Diffstat (limited to 'widgets/misc/e-multi-config-dialog.c')
-rw-r--r--widgets/misc/e-multi-config-dialog.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/widgets/misc/e-multi-config-dialog.c b/widgets/misc/e-multi-config-dialog.c
index 97b4e7ab3d..dbd8cc4a15 100644
--- a/widgets/misc/e-multi-config-dialog.c
+++ b/widgets/misc/e-multi-config-dialog.c
@@ -377,10 +377,14 @@ init (EMultiConfigDialog *multi_config_dialog)
ECell *text;
ECell *vbox;
+ gtk_dialog_set_has_separator (GTK_DIALOG (multi_config_dialog), FALSE);
+ gtk_widget_realize (GTK_WIDGET (multi_config_dialog));
+ gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (multi_config_dialog)->vbox), 0);
+ gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (multi_config_dialog)->action_area), 12);
+
hbox = gtk_hbox_new (FALSE, 6);
- gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (hbox), 12);
dialog_vbox = GTK_DIALOG (multi_config_dialog)->vbox;
- gtk_box_set_spacing (GTK_BOX (dialog_vbox), 6);
gtk_container_add (GTK_CONTAINER (dialog_vbox), hbox);