diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2001-01-10 03:29:18 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-10 03:29:18 +0800 |
commit | 18c8bea9516b25215772693b411f7067aacaf229 (patch) | |
tree | ebca9f161e049ce62f659118f5725e109dbf3121 /mail/mail-accounts.c | |
parent | 0d54c483525a76d4eedd41b9e5f59c241139bed3 (diff) | |
download | gsoc2013-evolution-18c8bea9516b25215772693b411f7067aacaf229.tar.gz gsoc2013-evolution-18c8bea9516b25215772693b411f7067aacaf229.tar.zst gsoc2013-evolution-18c8bea9516b25215772693b411f7067aacaf229.zip |
For all optionmenu's, set the appropriate 'history'. (keep_mail_check):
2001-01-09 Jeffrey Stedfast <fejj@helixcode.com>
* mail-account-editor.c: For all optionmenu's, set the appropriate
'history'.
(keep_mail_check): Set the keep-on-server checkbutton sensitivity
based on whether or not the store is a storage or not.
(construct): Call keep_mail_check().
* mail-config-druid.c (incoming_type_changed): Set the
keep-on-server checkbutton sensitivity based on whether or not the
store is a storage or not.
* mail-accounts.c (construct): Make sure the dialog isn't a
scrunched little thingy.
svn path=/trunk/; revision=7328
Diffstat (limited to 'mail/mail-accounts.c')
-rw-r--r-- | mail/mail-accounts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c index f48e33120d..7430532eef 100644 --- a/mail/mail-accounts.c +++ b/mail/mail-accounts.c @@ -342,6 +342,7 @@ construct (MailAccountsDialog *dialog) /* give our dialog an OK button and title */ gtk_window_set_title (GTK_WINDOW (dialog), _("Evolution Account Manager")); gtk_window_set_policy (GTK_WINDOW (dialog), FALSE, TRUE, TRUE); + gtk_window_set_default_size (GTK_WINDOW (dialog), 400, 300); gnome_dialog_append_button (GNOME_DIALOG (dialog), GNOME_STOCK_BUTTON_OK); dialog->mail_accounts = GTK_CLIST (glade_xml_get_widget (gui, "clistAccounts")); |