mirror of https://github.com/GNOME/gimp.git
app, menus: add gegl:tile-paper to Filters -> Map
This commit is contained in:
parent
2480d69341
commit
a110639233
|
@ -384,6 +384,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:tile-glass",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_TILE_GLASS */ },
|
||||
|
||||
{ "filters-tile-paper", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Paper Tile..."), NULL, NULL,
|
||||
"gegl:tile-paper",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_TILE_GLASS */ },
|
||||
|
||||
{ "filters-tile-seamless", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Tile Seamless..."), NULL, NULL,
|
||||
"gegl:tile-seamless",
|
||||
|
@ -554,6 +559,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-supernova", writable);
|
||||
SET_SENSITIVE ("filters-threshold-alpha", writable && alpha);
|
||||
SET_SENSITIVE ("filters-tile-glass", writable);
|
||||
SET_SENSITIVE ("filters-tile-paper", writable);
|
||||
SET_SENSITIVE ("filters-tile-seamless", writable);
|
||||
SET_SENSITIVE ("filters-unsharp-mask", writable);
|
||||
SET_SENSITIVE ("filters-video-degradation", writable);
|
||||
|
|
|
@ -551,6 +551,7 @@ sanity_check_gegl_ops (void)
|
|||
"gegl:supernova",
|
||||
"gegl:threshold",
|
||||
"gegl:tile",
|
||||
"gegl:tile-paper",
|
||||
"gegl:tile-glass",
|
||||
"gegl:tile-seamless",
|
||||
"gegl:transform",
|
||||
|
|
|
@ -184,6 +184,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:supernova",
|
||||
"gegl:texturize-canvas",
|
||||
"gegl:tile-glass",
|
||||
"gegl:tile-paper",
|
||||
"gegl:tile-seamless",
|
||||
"gegl:unsharp-mask",
|
||||
"gegl:value-invert",
|
||||
|
|
|
@ -726,6 +726,7 @@
|
|||
<menuitem action="filters-fractal-trace" />
|
||||
<menuitem action="filters-illusion" />
|
||||
<menuitem action="filters-panorama-projection" />
|
||||
<menuitem action="filters-tile-paper" />
|
||||
<menuitem action="filters-tile-seamless" />
|
||||
</menu>
|
||||
<menu action="plug-in-render-menu" name="Render">
|
||||
|
|
Loading…
Reference in New Issue