diff options
| author | Alvin Penner <penner@vaxxine.com> | 2012-09-17 22:40:45 +0000 |
|---|---|---|
| committer | apenner <penner@vaxxine.com> | 2012-09-17 22:40:45 +0000 |
| commit | 702260c47ccb58ed7ed38971504b955d69048149 (patch) | |
| tree | fe3fb75750479b38c657a35bf2a075a5262083b4 /src/sp-shape.cpp | |
| parent | add myself to AUTHORS (diff) | |
| download | inkscape-702260c47ccb58ed7ed38971504b955d69048149.tar.gz inkscape-702260c47ccb58ed7ed38971504b955d69048149.zip | |
fix typo in marker bbox calculation (Bug 1051131)
Fixed bugs:
- https://launchpad.net/bugs/1051131
(bzr r11670)
Diffstat (limited to 'src/sp-shape.cpp')
| -rw-r--r-- | src/sp-shape.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-shape.cpp b/src/sp-shape.cpp index f27b3c9db..a9a9c7781 100644 --- a/src/sp-shape.cpp +++ b/src/sp-shape.cpp @@ -614,7 +614,7 @@ Geom::OptRect SPShape::sp_shape_bbox(SPItem const *item, Geom::Affine const &tra tr = Geom::Scale(style->stroke_width.computed) * tr; } tr = marker_item->transform * marker->c2p * tr * transform; - bbox |= marker_item->visualBounds(); + bbox |= marker_item->visualBounds(tr); } } } |
