Replaced the old Unsharp Mask filter with the new GEGL operation
This commit is contained in:
@ -69,6 +69,12 @@ static const GimpStringActionEntry filters_actions[] =
|
||||
"gegl:polar-coordinates",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_POLAR_COORDINATES */ },
|
||||
|
||||
{ "filters-unsharp-mask", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Unsharp Mask..."), NULL,
|
||||
NC_("filters-action", "The most widely used method for sharpening an image"),
|
||||
"gegl:unsharp-mask",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_UNSHARP_MASK */ },
|
||||
|
||||
{ "filters-semi-flatten", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_Semi-Flatten..."), NULL,
|
||||
NC_("filters-action", "Replace partial transparency with a color"),
|
||||
|
@ -138,6 +138,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
||||
"gegl:threshold", /* in gimp */
|
||||
"gegl:transform", /* in gimp */
|
||||
"gegl:translate", /* pointless */
|
||||
"gegl:unsharp-mask", /* in gimp */
|
||||
"gegl:value-invert", /* in gimp */
|
||||
"gegl:vector-stroke"
|
||||
};
|
||||
|
@ -601,12 +601,14 @@
|
||||
<menuitem action="plug-in-reset-all" />
|
||||
<separator />
|
||||
<menu action="plug-in-blur-menu" name="Blur">
|
||||
<menuitem action="filters-gaussian-blur" />
|
||||
<menuitem action="filters-pixelize" />
|
||||
<menuitem action="filters-gaussian-blur" />
|
||||
<menuitem action="filters-pixelize" />
|
||||
</menu>
|
||||
<menu action="plug-in-enhance-menu" name="Enhance">
|
||||
<menuitem action="filters-unsharp-mask" />
|
||||
</menu>
|
||||
<menu action="plug-in-enhance-menu" name="Enhance" />
|
||||
<menu action="plug-in-distorts-menu" name="Distorts">
|
||||
<menuitem action="filters-polar-coordinates" />
|
||||
<menuitem action="filters-polar-coordinates" />
|
||||
</menu>
|
||||
<menu action="plug-in-light-shadow-menu" name="Light and Shadow">
|
||||
<placeholder name="Light" />
|
||||
|
@ -144,7 +144,6 @@ query (void)
|
||||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Filters/Enhance");
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user