Code

First version of feOffset support. Contains some rendering glitches.
[inkscape.git] / src / display / nr-arena-item.cpp
index b7ff825d28a98f61778a8eda13b63c3697ff8090..a4fdcf5bc93fcc4fee527fde396240b7c030d324 100644 (file)
@@ -414,9 +414,10 @@ nr_arena_item_invoke_render (cairo_t *ct, NRArenaItem *item, NRRectL const *area
 
         /* If background access is used, save the pixblock address.
          * This address is set to NULL at the end of this block */
-        if (item->background_new
-            || (item->parent && item->parent->background_pb)) {
+        if (item->background_new) {
             item->background_pb = &ipb;
+        } else if (item->parent && item->parent->background_pb) {
+            item->background_pb = item->parent->background_pb;
         }
         ipb.visible_area = pb->visible_area;
         unsigned int state = NR_ARENA_ITEM_VIRTUAL (item, render) (ct, item, &carea, &ipb, flags);