mirror of https://github.com/GNOME/gimp.git
app: add gegl:engrave to Filters -> Distorts
This commit is contained in:
parent
af9a052b26
commit
be5e2e6991
|
@ -154,6 +154,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:emboss",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_EMBOSS */ },
|
||||
|
||||
{ "filters-engrave", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_En_grave..."), NULL, NULL,
|
||||
"gegl:engrave",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_ENGRAVE */ },
|
||||
|
||||
{ "filters-exposure", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_E_xposure..."), NULL, NULL,
|
||||
"gegl:exposure",
|
||||
|
@ -478,6 +483,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-edge-laplace", writable);
|
||||
SET_SENSITIVE ("filters-edge-sobel", writable);
|
||||
SET_SENSITIVE ("filters-emboss", writable);
|
||||
SET_SENSITIVE ("filters-engrave", writable);
|
||||
SET_SENSITIVE ("filters-exposure", writable);
|
||||
SET_SENSITIVE ("filters-fractal-trace", writable);
|
||||
SET_SENSITIVE ("filters-gaussian-blur", writable);
|
||||
|
|
|
@ -497,6 +497,7 @@ sanity_check_gegl_ops (void)
|
|||
"gegl:edge-laplace",
|
||||
"gegl:edge-sobel",
|
||||
"gegl:emboss",
|
||||
"gegl:engrave",
|
||||
"gegl:exposure",
|
||||
"gegl:fractal-trace",
|
||||
"gegl:gaussian-blur",
|
||||
|
|
|
@ -138,6 +138,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:edge-laplace",
|
||||
"gegl:edge-sobel",
|
||||
"gegl:emboss",
|
||||
"gegl:engrave",
|
||||
"gegl:exposure",
|
||||
"gegl:fractal-trace",
|
||||
"gegl:gaussian-blur",
|
||||
|
|
|
@ -652,6 +652,7 @@
|
|||
<menu action="plug-in-distorts-menu" name="Distorts">
|
||||
<menuitem action="filters-apply-lens" />
|
||||
<menuitem action="filters-emboss" />
|
||||
<menuitem action="filters-engrave" />
|
||||
<menuitem action="filters-lens-distortion" />
|
||||
<menuitem action="filters-kaleidoscope" />
|
||||
<menuitem action="filters-mosaic" />
|
||||
|
|
Loading…
Reference in New Issue