diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2014-01-06 21:30:35 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2014-01-06 21:30:35 +0000 |
| commit | dec7bb8bfd978b71f8b1b5bb8f83fb331adcb31e (patch) | |
| tree | 89fe54e125746869562a3e8d54d35e6ee6e63b8d /src/sp-star.cpp | |
| parent | Only display snapping tooltip if source / target are defined (LP #1255764) (diff) | |
| download | inkscape-dec7bb8bfd978b71f8b1b5bb8f83fb331adcb31e.tar.gz inkscape-dec7bb8bfd978b71f8b1b5bb8f83fb331adcb31e.zip | |
Fix transforming shapes with path effect applied (bug #1247324)
Fixed bugs:
- https://launchpad.net/bugs/1247324
(bzr r12884)
Diffstat (limited to 'src/sp-star.cpp')
| -rw-r--r-- | src/sp-star.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sp-star.cpp b/src/sp-star.cpp index da10eeaa3..eac33ed7b 100644 --- a/src/sp-star.cpp +++ b/src/sp-star.cpp @@ -520,6 +520,11 @@ Geom::Affine SPStar::set_transform(Geom::Affine const &xform) return xform; } + // Allow live effects + if (hasPathEffect() && pathEffectsEnabled()) { + return xform; + } + /* Calculate star start in parent coords. */ Geom::Point pos( this->center * xform ); |
