[gimp] Bug 723649 - Increase/Decrease brush size relative actions don't work



commit 0cc292693defdf9c05fea994796151fe87b39a15
Author: Michael Natterer <mitch gimp org>
Date:   Fri Feb 7 21:18:26 2014 +0100

    Bug 723649 - Increase/Decrease brush size relative actions don't work
    
    The actions have accidentially been added to the group that changes
    the brush's angle not its size.

 app/actions/tools-actions.c |   17 ++++++++---------
 1 files changed, 8 insertions(+), 9 deletions(-)
---
diff --git a/app/actions/tools-actions.c b/app/actions/tools-actions.c
index 1072178..688d4e3 100644
--- a/app/actions/tools-actions.c
+++ b/app/actions/tools-actions.c
@@ -137,6 +137,14 @@ static const GimpEnumActionEntry tools_paint_brush_size_actions[] =
     "Increase Brush Size More", NULL, NULL,
     GIMP_ACTION_SELECT_SKIP_NEXT, FALSE,
     NULL },
+  { "tools-paint-brush-size-decrease-percent", GIMP_STOCK_TOOL_PAINTBRUSH,
+    "Decrease Brush Size Relative", NULL, NULL,
+    GIMP_ACTION_SELECT_PERCENT_PREVIOUS, FALSE,
+    NULL },
+  { "tools-paint-brush-size-increase-percent", GIMP_STOCK_TOOL_PAINTBRUSH,
+    "Increase Brush Size Relative", NULL, NULL,
+    GIMP_ACTION_SELECT_PERCENT_NEXT, FALSE,
+    NULL },
 };
 
 static const GimpEnumActionEntry tools_paint_brush_angle_actions[] =
@@ -173,15 +181,6 @@ static const GimpEnumActionEntry tools_paint_brush_angle_actions[] =
     "Increase Brush Angle More", NULL, NULL,
     GIMP_ACTION_SELECT_SKIP_NEXT, FALSE,
     NULL },
-  { "tools-paint-brush-size-decrease-percent", GIMP_STOCK_TOOL_PAINTBRUSH,
-    "Decrease Brush Size Relative", NULL, NULL,
-    GIMP_ACTION_SELECT_PERCENT_PREVIOUS, FALSE,
-    NULL },
-  { "tools-paint-brush-size-increase-percent", GIMP_STOCK_TOOL_PAINTBRUSH,
-    "Increase Brush Size Relative", NULL, NULL,
-    GIMP_ACTION_SELECT_PERCENT_NEXT, FALSE,
-    NULL },
-
 };
 
 static const GimpEnumActionEntry tools_paint_brush_aspect_ratio_actions[] =


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