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-spiral.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-spiral.cpp')
| -rw-r--r-- | src/sp-spiral.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sp-spiral.cpp b/src/sp-spiral.cpp index ffb875f2a..9ef73d56d 100644 --- a/src/sp-spiral.cpp +++ b/src/sp-spiral.cpp @@ -440,6 +440,11 @@ Geom::Affine SPSpiral::set_transform(Geom::Affine const &xform) return xform; } + // Allow live effects + if (hasPathEffect() && pathEffectsEnabled()) { + return xform; + } + /* Calculate spiral start in parent coords. */ Geom::Point pos( Geom::Point(this->cx, this->cy) * xform ); |
