Bug 754998 - Warp Transform Tool > Animation> Frames...

...spinbox does not step/page correctly

Correct the increments to be integers not floats.
This commit is contained in:
Jonathan Tait 2015-09-28 20:22:57 +02:00 committed by Michael Natterer
parent 7e9957851e
commit 7167586919

View file

@ -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);