mirror of https://github.com/GNOME/gimp.git
app: add gegl:grid to Filters -> Render -> Pattern
This commit is contained in:
parent
7a284def90
commit
86d0120482
|
@ -125,6 +125,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:gaussian-blur",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_GAUSSIAN_BLUR */ },
|
||||
|
||||
{ "filters-grid", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Grid..."), NULL, NULL,
|
||||
"gegl:grid",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_GAUSSIAN_GRID */ },
|
||||
|
||||
{ "filters-lens-distortion", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "Lens Distortion..."), NULL, NULL,
|
||||
"gegl:lens-distortion",
|
||||
|
@ -314,6 +319,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-exposure", writable);
|
||||
SET_SENSITIVE ("filters-fractal-trace", writable);
|
||||
SET_SENSITIVE ("filters-gaussian-blur", writable);
|
||||
SET_SENSITIVE ("filters-grid", writable);
|
||||
SET_SENSITIVE ("filters-mono-mixer", writable && !gray);
|
||||
SET_SENSITIVE ("filters-motion-blur", writable);
|
||||
SET_SENSITIVE ("filters-noise-cie-lch", writable);
|
||||
|
|
|
@ -131,6 +131,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:exposure",
|
||||
"gegl:fractal-trace",
|
||||
"gegl:gaussian-blur",
|
||||
"gegl:grid",
|
||||
"gegl:invert",
|
||||
"gegl:lens-distortion",
|
||||
"gegl:mono-mixer",
|
||||
|
|
|
@ -680,6 +680,7 @@
|
|||
<menu action="plug-in-render-nature-menu" name="Nature" />
|
||||
<menu action="plug-in-render-pattern-menu" name="Pattern">
|
||||
<menuitem action="filters-checkerboard" />
|
||||
<menuitem action="filters-grid" />
|
||||
</menu>
|
||||
<separator />
|
||||
</menu>
|
||||
|
|
Loading…
Reference in New Issue