use "gegl:translate" instead of "gegl:shift".

2008-12-03  Sven Neumann  <sven@gimp.org>

	* app/core/gimpitem.c (gimp_item_get_offset_node): use
	"gegl:translate" instead of "gegl:shift".


svn path=/trunk/; revision=27750
This commit is contained in:
Sven Neumann 2008-12-03 12:31:07 +00:00 committed by Sven Neumann
parent 97eb65b2ba
commit 86bab55c2f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-12-03 Sven Neumann <sven@gimp.org>
* app/core/gimpitem.c (gimp_item_get_offset_node): use
"gegl:translate" instead of "gegl:shift".
2008-12-03 Sven Neumann <sven@gimp.org>
* app/core/gimpimagemap.c: renamed GeglNode shift to translate.

View File

@ -1232,7 +1232,7 @@ gimp_item_get_offset_node (GimpItem *item)
item->offset_node =
gegl_node_new_child (node,
"operation", "gegl:shift",
"operation", "gegl:translate",
"x", (gdouble) item->offset_x,
"y", (gdouble) item->offset_y,
NULL);