[gimp] Bug 754998 - Warp Transform Tool > Animation> Frames...
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 754998 - Warp Transform Tool > Animation> Frames...
- Date: Mon, 28 Sep 2015 18:26:00 +0000 (UTC)
commit 7167586919a700eb8d307cbc3b0ec33dc2ba653b
Author: Jonathan Tait <jontait2 gmail com>
Date: Mon Sep 28 20:22:57 2015 +0200
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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/app/tools/gimpwarpoptions.c b/app/tools/gimpwarpoptions.c
index 0dd278c..c22bb0b 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]