mirror of https://github.com/GNOME/gimp.git
app: add gegl:long-shadow to the menus
This commit is contained in:
parent
b6c56a6ae9
commit
537bf4ec6a
|
@ -418,6 +418,11 @@ static const GimpStringActionEntry filters_interactive_actions[] =
|
|||
"gegl:stereographic-projection",
|
||||
GIMP_HELP_FILTER_LITTLE_PLANET },
|
||||
|
||||
{ "filters-long-shadow", GIMP_ICON_GEGL,
|
||||
NC_("filters-action", "_Long Shadow..."), NULL, NULL,
|
||||
"gegl:long-shadow",
|
||||
GIMP_HELP_FILTER_LONG_SHADOW },
|
||||
|
||||
{ "filters-mantiuk-2006", GIMP_ICON_GEGL,
|
||||
NC_("filters-action", "_Mantiuk 2006..."), NULL, NULL,
|
||||
"gegl:mantiuk06",
|
||||
|
@ -896,6 +901,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-lens-flare", writable);
|
||||
SET_SENSITIVE ("filters-levels", writable);
|
||||
SET_SENSITIVE ("filters-little-planet", writable);
|
||||
SET_SENSITIVE ("filters-long-shadow", writable && alpha);
|
||||
SET_SENSITIVE ("filters-mantiuk-2006", writable);
|
||||
SET_SENSITIVE ("filters-maze", writable);
|
||||
SET_SENSITIVE ("filters-median-blur", writable);
|
||||
|
|
|
@ -652,6 +652,7 @@ sanity_check_gegl_ops (void)
|
|||
"gegl:invert-linear",
|
||||
"gegl:lens-distortion",
|
||||
"gegl:lens-flare",
|
||||
"gegl:long-shadow",
|
||||
"gegl:mantiuk06",
|
||||
"gegl:map-absolute",
|
||||
"gegl:map-relative",
|
||||
|
|
|
@ -191,6 +191,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:invert-gamma",
|
||||
"gegl:lens-distortion",
|
||||
"gegl:lens-flare",
|
||||
"gegl:long-shadow",
|
||||
"gegl:mantiuk06",
|
||||
"gegl:maze",
|
||||
"gegl:median-blur",
|
||||
|
|
|
@ -392,6 +392,7 @@
|
|||
#define GIMP_HELP_FILTER_LENS_DISTORTION "gimp-filter-lens-distortion"
|
||||
#define GIMP_HELP_FILTER_LENS_FLARE "gimp-filter-lens-flare"
|
||||
#define GIMP_HELP_FILTER_LITTLE_PLANET "gimp-filter-little-planet"
|
||||
#define GIMP_HELP_FILTER_LONG_SHADOW "gimp-filter-long-shadow"
|
||||
#define GIMP_HELP_FILTER_MANTIUK_2006 "gimp-filter-manituk-2006"
|
||||
#define GIMP_HELP_FILTER_MAZE "gimp-filter-maze"
|
||||
#define GIMP_HELP_FILTER_MEDIAN_BLUR "gimp-filter-median-blur"
|
||||
|
|
|
@ -738,6 +738,7 @@
|
|||
<separator />
|
||||
<placeholder name="Shadow">
|
||||
<menuitem action="filters-dropshadow" />
|
||||
<menuitem action="filters-long-shadow" />
|
||||
<menuitem action="filters-vignette" />
|
||||
</placeholder>
|
||||
<separator />
|
||||
|
|
Loading…
Reference in New Issue