aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2005-01-22 05:56:12 +0800
committerRodney Dawes <dobey@src.gnome.org>2005-01-22 05:56:12 +0800
commit637fbe0446df03189f7f2989ad8d5a574edc3489 (patch)
treeb36b0e96126d41abf5beffe51cf1cfdaf044e8e1
parentd03a5b84de992ea32e5c71e07c4064552a442954 (diff)
downloadgsoc2013-evolution-637fbe0446df03189f7f2989ad8d5a574edc3489.tar
gsoc2013-evolution-637fbe0446df03189f7f2989ad8d5a574edc3489.tar.gz
gsoc2013-evolution-637fbe0446df03189f7f2989ad8d5a574edc3489.tar.bz2
gsoc2013-evolution-637fbe0446df03189f7f2989ad8d5a574edc3489.tar.lz
gsoc2013-evolution-637fbe0446df03189f7f2989ad8d5a574edc3489.tar.xz
gsoc2013-evolution-637fbe0446df03189f7f2989ad8d5a574edc3489.tar.zst
gsoc2013-evolution-637fbe0446df03189f7f2989ad8d5a574edc3489.zip
Call gtk_widget_ensure_style to ensure that we set the border widths of
2005-01-21 Rodney Dawes <dobey@novell.com> * gui/contact-editor/e-contact-editor.c (e_contact_editor_init): Call gtk_widget_ensure_style to ensure that we set the border widths of some dialog containers properly for HIG compliance svn path=/trunk/; revision=28498
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 12259827d0..3b8a2a835d 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,11 @@
2005-01-21 Rodney Dawes <dobey@novell.com>
+ * gui/contact-editor/e-contact-editor.c (e_contact_editor_init):
+ Call gtk_widget_ensure_style to ensure that we set the border widths
+ of some dialog containers properly for HIG compliance
+
+2005-01-21 Rodney Dawes <dobey@novell.com>
+
* gui/merging/eab-contact-duplicate-detected.glade:
Fix some spacing and remove the separator for HIG compliance
* gui/merging/eab-contact-merging.c (match_query_callback):
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index a5e4039777..b26c40811d 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -3042,6 +3042,7 @@ e_contact_editor_init (EContactEditor *e_contact_editor)
e_contact_editor->app = glade_xml_get_widget (gui, "contact editor");
widget = e_contact_editor->app;
+ gtk_widget_ensure_style (widget);
gtk_window_set_type_hint (GTK_WINDOW (widget), GDK_WINDOW_TYPE_HINT_NORMAL);
gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (widget)->vbox), 0);
gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (widget)->action_area), 12);