mirror of https://github.com/GNOME/gimp.git
app, menus: add gegl:displace to Filters -> Map
This commit is contained in:
parent
b54853f61b
commit
22dbdbe1fb
|
@ -139,6 +139,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:diffraction-patterns",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_DIFFRACTION_PATTERNS */ },
|
||||
|
||||
{ "filters-displace", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "Displace..."), NULL, NULL,
|
||||
"gegl:displace",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_DISPLACE */ },
|
||||
|
||||
{ "filters-distance-map", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "Distance Map..."), NULL, NULL,
|
||||
"gegl:distance-transform",
|
||||
|
@ -510,6 +515,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-deinterlace", writable);
|
||||
SET_SENSITIVE ("filters-difference-of-gaussians", writable);
|
||||
SET_SENSITIVE ("filters-diffraction-patterns", writable);
|
||||
SET_SENSITIVE ("filters-displace", writable);
|
||||
SET_SENSITIVE ("filters-distance-map", writable);
|
||||
SET_SENSITIVE ("filters-dropshadow", writable && alpha);
|
||||
SET_SENSITIVE ("filters-edge", writable);
|
||||
|
|
|
@ -494,6 +494,7 @@ sanity_check_gegl_ops (void)
|
|||
"gegl:deinterlace",
|
||||
"gegl:difference-of-gaussians",
|
||||
"gegl:diffraction-patterns",
|
||||
"gegl:displace",
|
||||
"gegl:distance-transform",
|
||||
"gegl:dropshadow",
|
||||
"gegl:edge",
|
||||
|
|
|
@ -135,6 +135,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:deinterlace",
|
||||
"gegl:difference-of-gaussians",
|
||||
"gegl:diffraction-patterns",
|
||||
"gegl:displace",
|
||||
"gegl:distance-transform",
|
||||
"gegl:dropshadow",
|
||||
"gegl:edge",
|
||||
|
|
|
@ -725,6 +725,7 @@
|
|||
<menu action="plug-in-decor-menu" name="Decor" />
|
||||
<menu action="plug-in-map-menu" name="Map">
|
||||
<menuitem action="filters-bump-map" />
|
||||
<menuitem action="filters-displace" />
|
||||
<menuitem action="filters-fractal-trace" />
|
||||
<menuitem action="filters-illusion" />
|
||||
<menuitem action="filters-panorama-projection" />
|
||||
|
|
Loading…
Reference in New Issue