[gimp] Bug 683553 - Spinscale scrollvalues in Brushsize are much too smal



commit 2c3a046d832e245aed8883424d0951b006ffc7e6
Author: Michael Natterer <mitch gimp org>
Date:   Tue Sep 11 20:28:20 2012 +0200

    Bug 683553 - Spinscale scrollvalues in Brushsize are much too smal
    
    Set the step/page increments to 1.0/10.0 for brush size and to 0.1/1.0
    for aspect ratio. the previous values were way too small.

 app/tools/gimppaintoptions-gui.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/app/tools/gimppaintoptions-gui.c b/app/tools/gimppaintoptions-gui.c
index d11b0e1..2113d46 100644
--- a/app/tools/gimppaintoptions-gui.c
+++ b/app/tools/gimppaintoptions-gui.c
@@ -132,7 +132,7 @@ gimp_paint_options_gui (GimpToolOptions *tool_options)
 
       scale = gimp_prop_spin_scale_new (config, "brush-size",
                                         _("Size"),
-                                        0.01, 1.0, 2);
+                                        1.0, 10.0, 2);
       gimp_spin_scale_set_scale_limits (GIMP_SPIN_SCALE (scale), 1.0, 1000.0);
       gimp_spin_scale_set_gamma (GIMP_SPIN_SCALE (scale), 1.7);
       gtk_box_pack_start (GTK_BOX (hbox), scale, TRUE, TRUE, 0);
@@ -158,7 +158,7 @@ gimp_paint_options_gui (GimpToolOptions *tool_options)
 
       scale = gimp_prop_spin_scale_new (config, "brush-aspect-ratio",
                                         _("Aspect Ratio"),
-                                        0.01, 0.1, 2);
+                                        0.1, 1.0, 2);
       gtk_box_pack_start (GTK_BOX (hbox), scale, TRUE, TRUE, 0);
       gtk_widget_show (scale);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]