mirror of https://github.com/GNOME/gimp.git
app: add gegl:color-rotate to Colors -> Map
This commit is contained in:
parent
f15b48b3c8
commit
227cff3af4
|
@ -90,6 +90,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:color-reduction",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_COLOR_TEMPERATURE */ },
|
||||
|
||||
{ "filters-color-rotate", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Rotate Colors..."), NULL, NULL,
|
||||
"gegl:color-rotate",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_COLOR_ROTATE */ },
|
||||
|
||||
{ "filters-color-temperature", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "Color T_emperature..."), NULL, NULL,
|
||||
"gegl:color-temperature",
|
||||
|
@ -416,6 +421,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-cartoon", writable);
|
||||
SET_SENSITIVE ("filters-checkerboard", writable);
|
||||
SET_SENSITIVE ("filters-color-reduction", writable);
|
||||
SET_SENSITIVE ("filters-color-rotate", writable);
|
||||
SET_SENSITIVE ("filters-color-temperature", writable && !gray);
|
||||
SET_SENSITIVE ("filters-color-to-alpha", writable && !gray && alpha);
|
||||
SET_SENSITIVE ("filters-convolution-matrix", writable);
|
||||
|
|
|
@ -481,6 +481,7 @@ sanity_check_gegl_ops (void)
|
|||
"gegl:checkerboard",
|
||||
"gegl:color",
|
||||
"gegl:color-reduction",
|
||||
"gegl:color-rotate",
|
||||
"gegl:color-temperature",
|
||||
"gegl:color-to-alpha",
|
||||
"gegl:convolution-matrix",
|
||||
|
|
|
@ -125,6 +125,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:checkerboard",
|
||||
"gegl:color",
|
||||
"gegl:color-reduction",
|
||||
"gegl:color-rotation",
|
||||
"gegl:color-temperature",
|
||||
"gegl:color-to-alpha",
|
||||
"gegl:convolution-matrix",
|
||||
|
|
|
@ -547,6 +547,7 @@
|
|||
<placeholder name="Colormap" />
|
||||
<separator />
|
||||
<menuitem action="filters-alien-map" />
|
||||
<menuitem action="filters-color-rotate" />
|
||||
</menu>
|
||||
<menu action="colors-info-menu" name="Info">
|
||||
<menuitem action="dialogs-histogram" />
|
||||
|
|
Loading…
Reference in New Issue