summaryrefslogtreecommitdiffstats
path: root/src/display/drawing-shape.cpp
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2013-10-01 11:55:55 +0000
committerMartin Owens <doctormo@gmail.com>2013-10-01 11:55:55 +0000
commit1595a83d610f4e328d84eb1fc2764041ea9335db (patch)
tree22afc9edd4274c4da250fa46f2b8cb76e7c75a52 /src/display/drawing-shape.cpp
parentMinor improvements to DrawingItem code and documentation (diff)
downloadinkscape-1595a83d610f4e328d84eb1fc2764041ea9335db.tar.gz
inkscape-1595a83d610f4e328d84eb1fc2764041ea9335db.zip
Revert render svg:patern segment for fill and stroke
(bzr r12646)
Diffstat (limited to 'src/display/drawing-shape.cpp')
-rw-r--r--src/display/drawing-shape.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/display/drawing-shape.cpp b/src/display/drawing-shape.cpp
index e689d0755..9ad18243e 100644
--- a/src/display/drawing-shape.cpp
+++ b/src/display/drawing-shape.cpp
@@ -179,8 +179,8 @@ DrawingShape::_renderItem(DrawingContext &ct, Geom::IntRect const &area, unsigne
// update fill and stroke paints.
// this cannot be done during nr_arena_shape_update, because we need a Cairo context
// to render svg:pattern
- has_fill = _nrstyle.prepareFill(ct, _bbox);
- has_stroke = _nrstyle.prepareStroke(ct, _bbox);
+ has_fill = _nrstyle.prepareFill(ct, _filter_bbox);
+ has_stroke = _nrstyle.prepareStroke(ct, _filter_bbox);
has_stroke &= (_nrstyle.stroke_width != 0);
if (has_fill || has_stroke) {