no need to check for the 'dont-cache' property now that we depend on the
2008-06-04 Sven Neumann <sven@gimp.org> * app/core/gimpdrawable-operation.c (gimp_drawable_apply_operation): no need to check for the 'dont-cache' property now that we depend on the newer GEGL. svn path=/trunk/; revision=25888
This commit is contained in:

committed by
Sven Neumann

parent
74a17aa216
commit
befe387b88
@ -1,3 +1,9 @@
|
|||||||
|
2008-06-04 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* app/core/gimpdrawable-operation.c (gimp_drawable_apply_operation):
|
||||||
|
no need to check for the 'dont-cache' property now that we depend
|
||||||
|
on the newer GEGL.
|
||||||
|
|
||||||
2008-06-04 Sven Neumann <sven@gimp.org>
|
2008-06-04 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* INSTALL: updated GEGL version and also mention babl.
|
* INSTALL: updated GEGL version and also mention babl.
|
||||||
|
@ -67,12 +67,11 @@ gimp_drawable_apply_operation (GimpDrawable *drawable,
|
|||||||
|
|
||||||
gegl = gegl_node_new ();
|
gegl = gegl_node_new ();
|
||||||
|
|
||||||
/* If the dont-cache property exist on the node object, we set it to
|
/* Disable caching on all children of the node unless explicitly re-enabled.
|
||||||
* false causing children of the node to not do any caching either,
|
|
||||||
* unless explicitly re-enabled.
|
|
||||||
*/
|
*/
|
||||||
if (g_object_class_find_property (G_OBJECT_GET_CLASS (gegl), "dont-cache"))
|
g_object_set (gegl,
|
||||||
g_object_set (gegl, "dont-cache", TRUE, NULL);
|
"dont-cache", TRUE,
|
||||||
|
NULL);
|
||||||
|
|
||||||
input = gegl_node_new_child (gegl,
|
input = gegl_node_new_child (gegl,
|
||||||
"operation", "gimp-tilemanager-source",
|
"operation", "gimp-tilemanager-source",
|
||||||
|
Reference in New Issue
Block a user