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:
parent
7e9957851e
commit
7167586919
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue