mirror of https://github.com/GNOME/gimp.git
app: add gegl:gegl to Filters -> Generic
Also fix packing of the operation GUI in GimpOperationTool, so the text box can expand.
This commit is contained in:
parent
a638a30f8d
commit
020b524e59
|
@ -262,6 +262,11 @@ static const GimpStringActionEntry filters_actions[] =
|
|||
"gegl:gaussian-blur-selective",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_GAUSSIAN_BLUR_SELECTIVE */ },
|
||||
|
||||
{ "filters-gegl-graph", GIMP_STOCK_GEGL,
|
||||
NC_("filters-action", "_GEGL graph..."), NULL, NULL,
|
||||
"gegl:gegl",
|
||||
NULL /* FIXME GIMP_HELP_FILTER_GEGL_GRAPH */ },
|
||||
|
||||
{ "filters-grid", GIMP_STOCK_GRID,
|
||||
NC_("filters-action", "_Grid..."), NULL, NULL,
|
||||
"gegl:grid",
|
||||
|
@ -682,6 +687,7 @@ filters_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("filters-fractal-trace", writable);
|
||||
SET_SENSITIVE ("filters-gaussian-blur", writable);
|
||||
SET_SENSITIVE ("filters-gaussian-blur-selective", writable);
|
||||
SET_SENSITIVE ("filters-gegl-graph", writable);
|
||||
SET_SENSITIVE ("filters-grid", writable);
|
||||
SET_SENSITIVE ("filters-high-pass", writable);
|
||||
SET_SENSITIVE ("filters-illusion", writable);
|
||||
|
|
|
@ -506,6 +506,7 @@ sanity_check_gegl_ops (void)
|
|||
"gegl:fractal-trace",
|
||||
"gegl:gaussian-blur",
|
||||
"gegl:gaussian-blur-selective",
|
||||
"gegl:gegl",
|
||||
"gegl:grid",
|
||||
"gegl:high-pass",
|
||||
"gegl:illusion",
|
||||
|
|
|
@ -145,6 +145,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
|
|||
"gegl:fractal-trace",
|
||||
"gegl:gaussian-blur",
|
||||
"gegl:gaussian-blur-selective",
|
||||
"gegl:gegl",
|
||||
"gegl:grid",
|
||||
"gegl:high-pass",
|
||||
"gegl:illusion",
|
||||
|
|
|
@ -301,7 +301,7 @@ gimp_operation_tool_dialog (GimpImageMapTool *im_tool)
|
|||
if (tool->options_gui)
|
||||
{
|
||||
gtk_box_pack_start (GTK_BOX (tool->options_box), tool->options_gui,
|
||||
FALSE, FALSE, 0);
|
||||
TRUE, TRUE, 0);
|
||||
gtk_widget_show (tool->options_gui);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue