app: add gegl:sepia to Colors -> Desaturate
This commit is contained in:
@ -65,7 +65,7 @@ static const GimpStringActionEntry filters_actions[] =
|
|||||||
NULL /* FIXME GIMP_HELP_FILTER_BUMP_MAP */ },
|
NULL /* FIXME GIMP_HELP_FILTER_BUMP_MAP */ },
|
||||||
|
|
||||||
{ "filters-c2g", GIMP_STOCK_GEGL,
|
{ "filters-c2g", GIMP_STOCK_GEGL,
|
||||||
NC_("filters-action", "Color to Gray..."), NULL, NULL,
|
NC_("filters-action", "_Color to Gray..."), NULL, NULL,
|
||||||
"gegl:c2g",
|
"gegl:c2g",
|
||||||
NULL /* FIXME GIMP_HELP_FILTER_C2G */ },
|
NULL /* FIXME GIMP_HELP_FILTER_C2G */ },
|
||||||
|
|
||||||
@ -225,7 +225,7 @@ static const GimpStringActionEntry filters_actions[] =
|
|||||||
NULL /* FIXME GIMP_HELP_FILTER_MAZE */ },
|
NULL /* FIXME GIMP_HELP_FILTER_MAZE */ },
|
||||||
|
|
||||||
{ "filters-mono-mixer", GIMP_STOCK_GEGL,
|
{ "filters-mono-mixer", GIMP_STOCK_GEGL,
|
||||||
NC_("filters-action", "Mono Mixer..."), NULL, NULL,
|
NC_("filters-action", "_Mono Mixer..."), NULL, NULL,
|
||||||
"gegl:mono-mixer",
|
"gegl:mono-mixer",
|
||||||
NULL /* FIXME GIMP_HELP_FILTER_MONO_MIXER */ },
|
NULL /* FIXME GIMP_HELP_FILTER_MONO_MIXER */ },
|
||||||
|
|
||||||
@ -354,6 +354,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||||||
"gimp:semi-flatten",
|
"gimp:semi-flatten",
|
||||||
NULL /* FIXME GIMP_HELP_FILTER_POLAR_COORDINATES */ },
|
NULL /* FIXME GIMP_HELP_FILTER_POLAR_COORDINATES */ },
|
||||||
|
|
||||||
|
{ "filters-sepia", GIMP_STOCK_GEGL,
|
||||||
|
NC_("filters-action", "_Sepia..."), NULL, NULL,
|
||||||
|
"gegl:sepia",
|
||||||
|
NULL /* FIXME GIMP_HELP_FILTER_SEPIA */ },
|
||||||
|
|
||||||
{ "filters-shift", GIMP_STOCK_GEGL,
|
{ "filters-shift", GIMP_STOCK_GEGL,
|
||||||
NC_("filters-action", "_Shift..."), NULL, NULL,
|
NC_("filters-action", "_Shift..."), NULL, NULL,
|
||||||
"gegl:shift",
|
"gegl:shift",
|
||||||
@ -563,6 +568,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||||||
SET_SENSITIVE ("filters-red-eye-removal", writable && !gray);
|
SET_SENSITIVE ("filters-red-eye-removal", writable && !gray);
|
||||||
SET_SENSITIVE ("filters-ripple", writable);
|
SET_SENSITIVE ("filters-ripple", writable);
|
||||||
SET_SENSITIVE ("filters-semi-flatten", writable && alpha);
|
SET_SENSITIVE ("filters-semi-flatten", writable && alpha);
|
||||||
|
SET_SENSITIVE ("filters-sepia", writable && !gray);
|
||||||
SET_SENSITIVE ("filters-shift", writable);
|
SET_SENSITIVE ("filters-shift", writable);
|
||||||
SET_SENSITIVE ("filters-sinus", writable);
|
SET_SENSITIVE ("filters-sinus", writable);
|
||||||
SET_SENSITIVE ("filters-softglow", writable);
|
SET_SENSITIVE ("filters-softglow", writable);
|
||||||
|
@ -543,6 +543,7 @@ sanity_check_gegl_ops (void)
|
|||||||
"gegl:ripple",
|
"gegl:ripple",
|
||||||
"gegl:scale-ratio",
|
"gegl:scale-ratio",
|
||||||
"gegl:seamless-clone",
|
"gegl:seamless-clone",
|
||||||
|
"gegl:sepia",
|
||||||
"gegl:shift",
|
"gegl:shift",
|
||||||
"gegl:simplex-noise",
|
"gegl:simplex-noise",
|
||||||
"gegl:shift",
|
"gegl:shift",
|
||||||
|
@ -177,8 +177,9 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||||||
"gegl:polar-coordinates",
|
"gegl:polar-coordinates",
|
||||||
"gegl:red-eye-removal",
|
"gegl:red-eye-removal",
|
||||||
"gegl:ripple",
|
"gegl:ripple",
|
||||||
"gegl:simplex-noise",
|
"gegl:sepia",
|
||||||
"gegl:shift",
|
"gegl:shift",
|
||||||
|
"gegl:simplex-noise",
|
||||||
"gegl:sinus",
|
"gegl:sinus",
|
||||||
"gegl:softglow",
|
"gegl:softglow",
|
||||||
"gegl:stretch-contrast",
|
"gegl:stretch-contrast",
|
||||||
|
@ -556,6 +556,7 @@
|
|||||||
<menu action="colors-desaturate-menu" name="Desaturate">
|
<menu action="colors-desaturate-menu" name="Desaturate">
|
||||||
<menuitem action="filters-mono-mixer" />
|
<menuitem action="filters-mono-mixer" />
|
||||||
<menuitem action="filters-c2g" />
|
<menuitem action="filters-c2g" />
|
||||||
|
<menuitem action="filters-sepia" />
|
||||||
<separator />
|
<separator />
|
||||||
</menu>
|
</menu>
|
||||||
<menu action="colors-map-menu" name="Map">
|
<menu action="colors-map-menu" name="Map">
|
||||||
|
Reference in New Issue
Block a user