diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-account-editor.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9474b2618f..d1fd83f40d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2008-12-15 Milan Crha <mcrha@redhat.com> + + ** Part of fix for bug #563669 + + * em-account-editor.c: (emae_option_checkspin): + Use zero GtkSpinButton's PageSize, as Gtk+ requires. + 2008-12-15 Srinivasa Ragavan <sragavan@novell.com> * em-format-html-display.c: Fix a impllicit warning diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 9d82b61620..b9850bd052 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -1999,7 +1999,7 @@ emae_option_checkspin(EMAccountEditorService *service, CamelURL *url, const char hbox = gtk_hbox_new(FALSE, 0); check = g_object_new(gtk_check_button_get_type(), "label", pre, "use_underline", TRUE, "active", enable, NULL); - spin = gtk_spin_button_new((GtkAdjustment *)gtk_adjustment_new(def, min, max, 1, 1, 1), 1, 0); + spin = gtk_spin_button_new((GtkAdjustment *)gtk_adjustment_new(def, min, max, 1, 1, 0), 1, 0); if (post) label = gtk_label_new_with_mnemonic(post); gtk_box_pack_start((GtkBox *)hbox, check, FALSE, TRUE, 0); |