[gimp/gimp-2-8] Bug 683553 - Spinscale scrollvalues in Brushsize are much too small



commit b2f48cd36ff91589adf10b3ed2a1ccda7d5f73b9
Author: Ell <ell_se yahoo com>
Date:   Tue Oct 17 08:39:07 2017 -0400

    Bug 683553 - Spinscale scrollvalues in Brushsize are much too small
    
    Increase the step and page increments of the brush radius spinscale
    in the brush editor to 1.0 and 10.0, respectively, to match those of
    the corresponding spinscale in the paint tool options.
    
    (cherry picked from commit 5456ddbb4064ef48705b20820a32fde3cdce549a)

 app/widgets/gimpbrusheditor.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/app/widgets/gimpbrusheditor.c b/app/widgets/gimpbrusheditor.c
index a8b5596..2ef8357 100644
--- a/app/widgets/gimpbrusheditor.c
+++ b/app/widgets/gimpbrusheditor.c
@@ -151,7 +151,7 @@ gimp_brush_editor_init (GimpBrushEditor *editor)
 
   /*  brush radius scale  */
   editor->radius_data =
-    GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.1, 1000.0, 0.1, 1.0, 0.0));
+    GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.1, 1000.0, 1.0, 10.0, 0.0));
   scale = gimp_spin_scale_new (editor->radius_data, _("Radius"), 1);
   gtk_box_pack_start (GTK_BOX (editor->options_box), scale, FALSE, FALSE, 0);
   gtk_widget_show (scale);


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