diff --git a/app/actions/filters-actions.c b/app/actions/filters-actions.c index d998fec4d6..b1fa217b2c 100644 --- a/app/actions/filters-actions.c +++ b/app/actions/filters-actions.c @@ -215,6 +215,11 @@ static const GimpStringActionEntry filters_actions[] = "gegl:pixelize", NULL /* FIXME GIMP_HELP_FILTER_PIXELIZE */ }, + { "filters-plasma", GIMP_STOCK_GEGL, + NC_("filters-action", "_Plasma..."), NULL, NULL, + "gegl:plasma", + NULL /* FIXME GIMP_HELP_FILTER_PLASMA */ }, + { "filters-polar-coordinates", GIMP_STOCK_GEGL, NC_("filters-action", "P_olar Coordinates..."), NULL, NULL, "gegl:polar-coordinates", @@ -371,6 +376,7 @@ filters_actions_update (GimpActionGroup *group, SET_SENSITIVE ("filters-lens-distortion", writable); SET_SENSITIVE ("filters-photocopy", writable); SET_SENSITIVE ("filters-pixelize", writable); + SET_SENSITIVE ("filters-plasma", writable); SET_SENSITIVE ("filters-polar-coordinates", writable); SET_SENSITIVE ("filters-red-eye-removal", writable && !gray); SET_SENSITIVE ("filters-ripple", writable); diff --git a/app/tools/gimpgegltool.c b/app/tools/gimpgegltool.c index 95e1b6a4cc..634d098b87 100644 --- a/app/tools/gimpgegltool.c +++ b/app/tools/gimpgegltool.c @@ -151,6 +151,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name, "gegl:noise-spread", "gegl:photocopy", "gegl:pixelize", + "gegl:plasma", "gegl:polar-coordinates", "gegl:red-eye-removal", "gegl:ripple", diff --git a/menus/image-menu.xml.in b/menus/image-menu.xml.in index 8b21a2802a..d78d46c2aa 100644 --- a/menus/image-menu.xml.in +++ b/menus/image-menu.xml.in @@ -691,7 +691,9 @@