aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog11
-rw-r--r--shell/e-corba-config-page.c1
-rw-r--r--shell/e-shell-settings-dialog.c3
3 files changed, 14 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 54e4f260fa..5591162507 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,14 @@
+2003-04-22 Anna Marie Dirks <anna@ximian.com>
+
+ * e-shell-settings-dialog.c (init): Add appropriate padding
+ to the Evolution Settings window. This is another bit of the
+ fix for #41392.
+
+ * e-corba-config-page.c (e_corba_config_page_construct): Add
+ appropriate padding to the corba_config_page widget. Partial
+ fix for #41392.
+
+
2003-04-23 Anna Marie Dirks <anna@ximian.com>
*glade/e-folder-list.glade : replaced buttons with stock
diff --git a/shell/e-corba-config-page.c b/shell/e-corba-config-page.c
index 50fd1bdfd6..e594a5a89d 100644
--- a/shell/e-corba-config-page.c
+++ b/shell/e-corba-config-page.c
@@ -231,6 +231,7 @@ e_corba_config_page_construct (ECorbaConfigPage *corba_config_page,
control_widget = bonobo_widget_new_control_from_objref (control, CORBA_OBJECT_NIL);
gtk_widget_show (control_widget);
gtk_container_add (GTK_CONTAINER (corba_config_page), control_widget);
+ gtk_container_set_border_width (GTK_CONTAINER (corba_config_page), 6);
setup_listener (corba_config_page, corba_object);
diff --git a/shell/e-shell-settings-dialog.c b/shell/e-shell-settings-dialog.c
index cab4070def..ed688828db 100644
--- a/shell/e-shell-settings-dialog.c
+++ b/shell/e-shell-settings-dialog.c
@@ -341,7 +341,8 @@ init (EShellSettingsDialog *dialog)
dialog->priv = priv;
load_pages (dialog);
-
+
+ gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
gtk_window_set_title (GTK_WINDOW (dialog), _("Evolution Settings"));
}