[gimp/soc-2011-warp] gegl-tool: blacklist lens-correct and hstack since they can't be used with the gegl tool. lens-corre
- From: Michael Murà <mmure src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/soc-2011-warp] gegl-tool: blacklist lens-correct and hstack since they can't be used with the gegl tool. lens-corre
- Date: Mon, 25 Jul 2011 13:23:29 +0000 (UTC)
commit 8bf29cd25e8dbf09518b614d4114747495889e8d
Author: Michael Murà <batolettre gmail com>
Date: Mon Jul 25 15:20:53 2011 +0200
gegl-tool: blacklist lens-correct and hstack since they can't be used with the gegl tool.
lens-correct expect a lens correction model
hstack expect and aux buffer
app/tools/gimpgegltool.c | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
---
diff --git a/app/tools/gimpgegltool.c b/app/tools/gimpgegltool.c
index b147ef9..c9bf362 100644
--- a/app/tools/gimpgegltool.c
+++ b/app/tools/gimpgegltool.c
@@ -157,7 +157,7 @@ gimp_gegl_tool_initialize (GimpTool *tool,
if (gimp_drawable_is_indexed (drawable))
{
g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
- _("GEGL operations do not operate on indexed layers."));
+ _("GEGL operations do not operate on indexed layers."));
return FALSE;
}
@@ -256,6 +256,8 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name,
"gegl:contrast-curve",
"gegl:fill-path",
"gegl:vector-stroke",
+ "gegl:lens-correct",
+ "gegl:hstack",
"gimp-",
"gimp:"
};
@@ -377,7 +379,7 @@ gimp_gegl_tool_dialog (GimpImageMapTool *image_map_tool)
gtk_widget_show (label);
store = gtk_list_store_new (N_COLUMNS,
- G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING);
+ G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING);
opclasses = gimp_get_geglopclasses ();
@@ -389,9 +391,9 @@ gimp_gegl_tool_dialog (GimpImageMapTool *image_map_tool)
if (g_str_has_prefix (opclass->name, "gegl:"))
{
- label = opclass->name + strlen ("gegl:");
- stock_id = GIMP_STOCK_GEGL;
- }
+ label = opclass->name + strlen ("gegl:");
+ stock_id = GIMP_STOCK_GEGL;
+ }
else
{
label = opclass->name;
@@ -400,8 +402,8 @@ gimp_gegl_tool_dialog (GimpImageMapTool *image_map_tool)
gtk_list_store_insert_with_values (store, NULL, -1,
COLUMN_NAME, opclass->name,
- COLUMN_LABEL, label,
- COLUMN_STOCK_ID, stock_id,
+ COLUMN_LABEL, label,
+ COLUMN_STOCK_ID, stock_id,
-1);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]