diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-03 06:38:46 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-03 06:38:46 +0800 |
commit | f29b73483cecc138b1cbee31bbd318973abd466e (patch) | |
tree | 33248f8cb703192acacb8c878c39099ec0d2a9b9 /mail/mail-config.c | |
parent | a0281d1b1860f650ba2293e422cbc9ec7ee2012b (diff) | |
download | gsoc2013-evolution-f29b73483cecc138b1cbee31bbd318973abd466e.tar gsoc2013-evolution-f29b73483cecc138b1cbee31bbd318973abd466e.tar.gz gsoc2013-evolution-f29b73483cecc138b1cbee31bbd318973abd466e.tar.bz2 gsoc2013-evolution-f29b73483cecc138b1cbee31bbd318973abd466e.tar.lz gsoc2013-evolution-f29b73483cecc138b1cbee31bbd318973abd466e.tar.xz gsoc2013-evolution-f29b73483cecc138b1cbee31bbd318973abd466e.tar.zst gsoc2013-evolution-f29b73483cecc138b1cbee31bbd318973abd466e.zip |
Make the "test settings" button FILL rather than SHRINK so it doesn't end
* mail-config.c (service_page_item_new): Make the "test settings"
button FILL rather than SHRINK so it doesn't end up oddly-placed.
* mail-config-druid.glade: Make the icon background dark blue
like the surrounding area.
svn path=/trunk/; revision=4491
Diffstat (limited to 'mail/mail-config.c')
-rw-r--r-- | mail/mail-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-config.c b/mail/mail-config.c index be4dd77231..7b9a88a32c 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -1222,7 +1222,7 @@ service_page_item_new (MailDialogServicePage *page, MailService *mcs) btn = gtk_button_new_with_label (_("Test Settings")); gtk_table_attach (GTK_TABLE (table), btn, 2, 3, - row, row + 1, GTK_SHRINK, GTK_SHRINK, 0, 0); + row, row + 1, GTK_FILL, GTK_FILL, 0, 0); gtk_signal_connect (GTK_OBJECT (btn), "clicked", GTK_SIGNAL_FUNC (service_page_item_test), |