aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-12-15 19:46:53 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-12-15 19:46:53 +0800
commit7365be40fe5adb231140711487e798438ff8777a (patch)
tree4b763d5bcb1c1fd483dc1ae3510b1802e9118def /filter
parent7c0d77d3d42067a22e5022c954f3ac44c6bf1efb (diff)
downloadgsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar
gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.gz
gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.bz2
gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.lz
gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.xz
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 'filter')
-rw-r--r--filter/ChangeLog7
-rw-r--r--filter/filter-int.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index 367645ea18..2bfb8a6aa1 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,3 +1,10 @@
+2008-12-15 Milan Crha <mcrha@redhat.com>
+
+ ** Part of fix for bug #563669
+
+ * filter-int.c: (get_widget):
+ Use zero GtkSpinButton's PageSize, as Gtk+ requires.
+
2008-12-10 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #563870
diff --git a/filter/filter-int.c b/filter/filter-int.c
index 5336884eae..969a477331 100644
--- a/filter/filter-int.c
+++ b/filter/filter-int.c
@@ -241,7 +241,7 @@ get_widget (FilterElement *fe)
GtkObject *adjustment;
FilterInt *fs = (FilterInt *)fe;
- adjustment = gtk_adjustment_new (0.0, (gfloat)fs->min, (gfloat)fs->max, 1.0, 1.0, 1.0);
+ adjustment = gtk_adjustment_new (0.0, (gfloat)fs->min, (gfloat)fs->max, 1.0, 1.0, 0);
spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), fs->max>fs->min+1000?5.0:1.0, 0);
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin), TRUE);