diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-04-28 01:57:06 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-04-28 01:57:06 +0800 |
commit | 7cd76a64850caf3643d2404995aa3c93c317ee2f (patch) | |
tree | 8810789536645b2a09b761affc7794d5a4fc48ac /addressbook/gui/search | |
parent | c16f96602acf71c4e95ef11a1004ea1fa4ae30fd (diff) | |
download | gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar.gz gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar.zst gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.zip |
Update dialog vbox and action area border widths to be HIG compliant
2004-04-27 Rodney Dawes <dobey@ximian.com>
* gui/contact-editor/e-contact-editor-fullname.c:
(e_contact_editor_fullname_init):
* gui/contact-editor/fullname.glade:
* gui/search/e-addressbook-search-dialog.c (eab_search_dialog_init):
Update dialog vbox and action area border widths to be HIG compliant
Update main child widget border widths to be HIG compliant
svn path=/trunk/; revision=25635
Diffstat (limited to 'addressbook/gui/search')
-rw-r--r-- | addressbook/gui/search/e-addressbook-search-dialog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/gui/search/e-addressbook-search-dialog.c b/addressbook/gui/search/e-addressbook-search-dialog.c index a8621bf5a7..91277ed7c7 100644 --- a/addressbook/gui/search/e-addressbook-search-dialog.c +++ b/addressbook/gui/search/e-addressbook-search-dialog.c @@ -112,9 +112,15 @@ eab_search_dialog_init (EABSearchDialog *view) { GtkDialog *dialog = GTK_DIALOG (view); + gtk_widget_realize (GTK_WIDGET (dialog)); + gtk_dialog_set_has_separator (dialog, FALSE); + gtk_container_set_border_width (GTK_CONTAINER (dialog->vbox), 0); + gtk_container_set_border_width (GTK_CONTAINER (dialog->action_area), 12); + gtk_window_set_default_size (GTK_WINDOW (view), 550, 400); gtk_window_set_title(GTK_WINDOW(view), _("Advanced Search")); view->search = get_widget(view); + gtk_container_set_border_width (GTK_CONTAINER (view->search), 12); gtk_box_pack_start(GTK_BOX(dialog->vbox), view->search, TRUE, TRUE, 0); gtk_widget_show(view->search); |