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.
This commit is contained in:
Michael Natterer 2014-02-07 21:18:26 +01:00
parent 4bd35bd53f
commit 0cc292693d
1 changed files with 8 additions and 9 deletions

View File

@ -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[] =