summaryrefslogtreecommitdiffstats
path: root/src/sp-shape.cpp
diff options
context:
space:
mode:
authorAlvin Penner <penner@vaxxine.com>2012-01-04 00:51:01 +0000
committerapenner <penner@vaxxine.com>2012-01-04 00:51:01 +0000
commit24901d78071586fc3cb5b67c9d350ce3696fda89 (patch)
treea02d3ae583d7c27d6ee5d517caa34a4a6f033682 /src/sp-shape.cpp
parentRename LaTeX formula extension to LaTeX (diff)
downloadinkscape-24901d78071586fc3cb5b67c9d350ce3696fda89.tar.gz
inkscape-24901d78071586fc3cb5b67c9d350ce3696fda89.zip
for bbox calculation, disable call to Path::Coalesce (Bug 906952)
Fixed bugs: - https://launchpad.net/bugs/906952 (bzr r10835)
Diffstat (limited to 'src/sp-shape.cpp')
-rw-r--r--src/sp-shape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-shape.cpp b/src/sp-shape.cpp
index 8bfa99392..5fd33bef7 100644
--- a/src/sp-shape.cpp
+++ b/src/sp-shape.cpp
@@ -515,7 +515,7 @@ Geom::OptRect SPShape::sp_shape_bbox(SPItem const *item, Geom::Affine const &tra
// convert the stroke to a path and calculate that path's geometric bbox
SPStyle* style = item->style;
if (!style->stroke.isNone()) {
- Geom::PathVector *pathv = item_outline(item);
+ Geom::PathVector *pathv = item_outline(item, false); // disable Path::Coalesce
if (pathv) {
bbox |= bounds_exact_transformed(*pathv, transform);
delete pathv;