diff options
author | Anna Marie Dirks <anna@ximian.com> | 2003-04-24 03:16:18 +0800 |
---|---|---|
committer | Anna Dirks <anna@src.gnome.org> | 2003-04-24 03:16:18 +0800 |
commit | 88de138a6665ec1fb064521f3f8aa3d8f0435d79 (patch) | |
tree | e034a1baf6b4825425a0a55efb5a49f661fc0cc0 /shell | |
parent | 1c6f8c8db4b377995f322c14baa33afc38f3c410 (diff) | |
download | gsoc2013-evolution-88de138a6665ec1fb064521f3f8aa3d8f0435d79.tar.gz gsoc2013-evolution-88de138a6665ec1fb064521f3f8aa3d8f0435d79.tar.zst gsoc2013-evolution-88de138a6665ec1fb064521f3f8aa3d8f0435d79.zip |
Add appropriate padding to the Evolution Settings window. This is another
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.
svn path=/trunk/; revision=20941
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 11 | ||||
-rw-r--r-- | shell/e-corba-config-page.c | 1 | ||||
-rw-r--r-- | shell/e-shell-settings-dialog.c | 3 |
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")); } |