mirror of https://github.com/GNOME/gimp.git
app: add gegl:bump-map to Filters -> Map
This commit is contained in:
parent
6dc83396a2
commit
0d5910aa4b
|
@ -50,6 +50,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:antialias",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_ANTIALIAS */ },
|
||||
|
||||
{ "filters-bump-map", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Bump Map..."), NULL, NULL,
|
||||
"gegl:bump-map",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_BUMP_MAP */ },
|
||||
|
||||
{ "filters-c2g", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "Color to Gray..."), NULL, NULL,
|
||||
"gegl:c2g",
|
||||
|
@ -344,6 +349,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
|
||||
SET_SENSITIVE ("filters-alien-map", writable);
|
||||
SET_SENSITIVE ("filters-antialias", writable);
|
||||
SET_SENSITIVE ("filters-bump-map", writable);
|
||||
SET_SENSITIVE ("filters-c2g", writable && !gray);
|
||||
SET_SENSITIVE ("filters-cartoon", writable);
|
||||
SET_SENSITIVE ("filters-checkerboard", writable);
|
||||
|
|
|
@ -115,6 +115,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
*/
|
||||
"gegl:alien-map",
|
||||
"gegl:antialias",
|
||||
"gegl:bump-map",
|
||||
"gegl:c2g",
|
||||
"gegl:cartoon",
|
||||
"gegl:channel-mixer",
|
||||
|
|
|
@ -687,6 +687,7 @@
|
|||
</menu>
|
||||
<menu action="plug-in-decor-menu" name="Decor" />
|
||||
<menu action="plug-in-map-menu" name="Map">
|
||||
<menuitem action="filters-bump-map" />
|
||||
<menuitem action="filters-fractal-trace" />
|
||||
<menuitem action="filters-tile-seamless" />
|
||||
</menu>
|
||||
|
|
Loading…
Reference in New Issue