From 7167586919a700eb8d307cbc3b0ec33dc2ba653b Mon Sep 17 00:00:00 2001 From: Jonathan Tait Date: Mon, 28 Sep 2015 20:22:57 +0200 Subject: [PATCH] Bug 754998 - Warp Transform Tool > Animation> Frames... ...spinbox does not step/page correctly Correct the increments to be integers not floats. --- app/tools/gimpwarpoptions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tools/gimpwarpoptions.c b/app/tools/gimpwarpoptions.c index 0dd278cf30..c22bb0bce6 100644 --- a/app/tools/gimpwarpoptions.c +++ b/app/tools/gimpwarpoptions.c @@ -220,7 +220,7 @@ gimp_warp_options_gui (GimpToolOptions *tool_options) scale = gimp_prop_spin_scale_new (config, "n-animation-frames", _("Frames"), - 0.01, 1.0, 2); + 1.0, 10.0, 0); gimp_spin_scale_set_scale_limits (GIMP_SPIN_SCALE (scale), 3.0, 100.0); gtk_box_pack_start (GTK_BOX (anim_vbox), scale, FALSE, FALSE, 0); gtk_widget_show (scale);