diff options
author | Milan Crha <mcrha@redhat.com> | 2008-12-15 19:46:53 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-12-15 19:46:53 +0800 |
commit | 7365be40fe5adb231140711487e798438ff8777a (patch) | |
tree | 4b763d5bcb1c1fd483dc1ae3510b1802e9118def /calendar/conduits | |
parent | 7c0d77d3d42067a22e5022c954f3ac44c6bf1efb (diff) | |
download | gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.gz gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.zst gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.zip |
** Part of fix for bug #563669
2008-12-15 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #563669
* mail/em-account-editor.c: (emae_option_checkspin):
* filter/filter-int.c: (get_widget):
* calendar/gui/dialogs/recurrence-page.c: (make_ending_count_special):
* calendar/conduits/todo/todo-conduit.c: (e_todo_gui_new):
Use zero GtkSpinButton's PageSize, as Gtk+ requires.
svn path=/trunk/; revision=36892
Diffstat (limited to 'calendar/conduits')
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 53aeab425b..0b9d1505b9 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -240,7 +240,7 @@ e_todo_gui_new (EPilotSettings *ps) rows = E_PILOT_SETTINGS_TABLE_ROWS; lbl = gtk_label_new (_("Default Priority:")); gtk_misc_set_alignment (GTK_MISC (lbl), 0.0, 0.5); - adj = gtk_adjustment_new (1, 1, 5, 1, 5, 5); + adj = gtk_adjustment_new (1, 1, 5, 1, 5, 0); gui->priority = gtk_spin_button_new (GTK_ADJUSTMENT (adj), 1.0, 0); gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (gui->priority), TRUE); gtk_table_attach_defaults (GTK_TABLE (ps), lbl, 0, 1, rows, rows + 1); |