diff options
| author | Martin Owens <doctormo@gmail.com> | 2013-09-18 18:46:36 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2013-09-18 18:46:36 +0000 |
| commit | 0f85e2c60c4406eaddc7a96d8ddcc05d36d458f2 (patch) | |
| tree | a6419f2d3428bf3e6f6cd6b57f427602c63f381b /src/display/drawing-shape.cpp | |
| parent | Fix cmake+ninja install (bug #1224543) (diff) | |
| download | inkscape-0f85e2c60c4406eaddc7a96d8ddcc05d36d458f2.tar.gz inkscape-0f85e2c60c4406eaddc7a96d8ddcc05d36d458f2.zip | |
Remove setItemBounds and _item_bbox because aren't sensible, replace with bbox.
Fixed bugs:
- https://launchpad.net/bugs/243729
(bzr r12528)
Diffstat (limited to 'src/display/drawing-shape.cpp')
| -rw-r--r-- | src/display/drawing-shape.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/display/drawing-shape.cpp b/src/display/drawing-shape.cpp index e80f12486..e689d0755 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, _item_bbox); - has_stroke = _nrstyle.prepareStroke(ct, _item_bbox); + has_fill = _nrstyle.prepareFill(ct, _bbox); + has_stroke = _nrstyle.prepareStroke(ct, _bbox); has_stroke &= (_nrstyle.stroke_width != 0); if (has_fill || has_stroke) { |
