diff --git a/app/tools/gimpwarpoptions.c b/app/tools/gimpwarpoptions.c index 0e2360c38e..0ee2b969fb 100644 --- a/app/tools/gimpwarpoptions.c +++ b/app/tools/gimpwarpoptions.c @@ -71,7 +71,7 @@ gimp_warp_options_class_init (GimpWarpOptionsClass *klass) GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_EFFECT_STRENGTH, "effect-strength", _("Effect Strength"), - 0.0, 100.0, 1.0, + 0.0, 10.0, 1.0, GIMP_PARAM_STATIC_STRINGS); GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_EFFECT_SIZE, @@ -160,7 +160,7 @@ gimp_warp_options_gui (GimpToolOptions *tool_options) strength = gimp_prop_spin_scale_new (config, "effect-strength", _("Strength"), 0.01, 1.0, 2); - gimp_spin_scale_set_scale_limits (GIMP_SPIN_SCALE (strength), 0.0, 10.0); + gimp_spin_scale_set_scale_limits (GIMP_SPIN_SCALE (strength), 0.0, 1.0); gtk_box_pack_start (GTK_BOX (vbox), strength, FALSE, FALSE, 0); gtk_widget_show (strength);