mirror of https://github.com/GNOME/gimp.git
app: add gegl:motion-blur to Filters -> Blur
This commit is contained in:
parent
b8558f8859
commit
b593e3eb02
|
@ -125,6 +125,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:mono-mixer",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_MONO_MIXER */ },
|
||||
|
||||
{ "filters-motion-blur", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Motion Blur..."), NULL, NULL,
|
||||
"gegl:motion-blur",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_MOTION_BLUR */ },
|
||||
|
||||
{ "filters-noise-cie-lch", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "CIE lch Noise..."), NULL, NULL,
|
||||
"gegl:noise-CIE_lch",
|
||||
|
@ -303,6 +308,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-gaussian-blur", writable);
|
||||
SET_SENSITIVE ("filters-laplace", writable);
|
||||
SET_SENSITIVE ("filters-mono-mixer", writable && !gray);
|
||||
SET_SENSITIVE ("filters-motion-blur", writable);
|
||||
SET_SENSITIVE ("filters-noise-cie-lch", writable);
|
||||
SET_SENSITIVE ("filters-noise-hsv", writable && !gray);
|
||||
SET_SENSITIVE ("filters-noise-hurl", writable);
|
||||
|
|
|
@ -141,6 +141,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:lens-distortion", /* in gimp */
|
||||
"gegl:matting-global", /* useless */
|
||||
"gegl:mono-mixer", /* in gimp */
|
||||
"gegl:motion-blur", /* in gimp */
|
||||
"gegl:noise-CIE_lch", /* in gimp */
|
||||
"gegl:noise-hsv", /* in gimp */
|
||||
"gegl:noise-hurl", /* in gimp */
|
||||
|
|
|
@ -623,6 +623,7 @@
|
|||
<menu action="plug-in-blur-menu" name="Blur">
|
||||
<menuitem action="filters-gaussian-blur" />
|
||||
<menuitem action="filters-dot" />
|
||||
<menuitem action="filters-motion-blur" />
|
||||
<menuitem action="filters-pixelize" />
|
||||
</menu>
|
||||
<menu action="plug-in-enhance-menu" name="Enhance">
|
||||
|
|
Loading…
Reference in New Issue