diff options
| author | Jabiertxof <jabier.arraiza@marker.es> | 2018-10-02 21:59:03 +0000 |
|---|---|---|
| committer | Jabiertxof <jabier.arraiza@marker.es> | 2018-10-02 21:59:03 +0000 |
| commit | 9718987b63ead60f6fd135768eb72f83c999ee4e (patch) | |
| tree | 84964f75632bf2de01101a4c7c3c618007496037 /src/object/sp-path.cpp | |
| parent | CMake: Allow to build with GraphicsMagick instead of ImageMagick (diff) | |
| download | inkscape-9718987b63ead60f6fd135768eb72f83c999ee4e.tar.gz inkscape-9718987b63ead60f6fd135768eb72f83c999ee4e.zip | |
Fixes for LPE transforms and a bug when closing inkscape, related to lpeobject-reference
Diffstat (limited to 'src/object/sp-path.cpp')
| -rw-r--r-- | src/object/sp-path.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/object/sp-path.cpp b/src/object/sp-path.cpp index 189f8c2c6..10f7930c0 100644 --- a/src/object/sp-path.cpp +++ b/src/object/sp-path.cpp @@ -322,10 +322,7 @@ Geom::Affine SPPath::set_transform(Geom::Affine const &transform) { if (!_curve) { // 0 nodes, nothing to transform return Geom::identity(); } - if (hasPathEffect() && pathEffectsEnabled()) - { - // Inverse it to compensate - this->adjust_livepatheffect(transform.inverse()); + if (hasPathEffect() && pathEffectsEnabled()) { return transform; } |
