summaryrefslogtreecommitdiffstats
path: root/src/sp-path.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2017-06-24 17:45:12 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-06-24 17:45:12 +0000
commite1b08bb2e05c407f3e524e5d9f7b63ae88e15f6c (patch)
tree650aaeb95a2468fdbdc3401530e8a825c7c4a3d1 /src/sp-path.cpp
parentUpdating to master (diff)
downloadinkscape-e1b08bb2e05c407f3e524e5d9f7b63ae88e15f6c.tar.gz
inkscape-e1b08bb2e05c407f3e524e5d9f7b63ae88e15f6c.zip
Working with powerclip and powermask
Diffstat (limited to 'src/sp-path.cpp')
-rw-r--r--src/sp-path.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sp-path.cpp b/src/sp-path.cpp
index c6ec5559e..bb76eb73f 100644
--- a/src/sp-path.cpp
+++ b/src/sp-path.cpp
@@ -289,7 +289,6 @@ Geom::Affine SPPath::set_transform(Geom::Affine const &transform) {
if (!_curve) { // 0 nodes, nothing to transform
return Geom::identity();
}
-
// Transform the original-d path if this is a valid LPE this, other else the (ordinary) path
if (_curve_before_lpe && hasPathEffectRecursive()) {
if (this->hasPathEffectOfType(Inkscape::LivePathEffect::CLONE_ORIGINAL) ||
@@ -297,7 +296,7 @@ Geom::Affine SPPath::set_transform(Geom::Affine const &transform) {
this->hasPathEffectOfType(Inkscape::LivePathEffect::FILL_BETWEEN_MANY) ||
this->hasPathEffectOfType(Inkscape::LivePathEffect::FILL_BETWEEN_STROKES) )
{
- // if path has the CLONE_ORIGINAL LPE applied, don't write the transform to the pathdata, but write it 'unoptimized'
+ // if path has this LPE applied, don't write the transform to the pathdata, but write it 'unoptimized'
// also if the effect is type BEND PATH to fix bug #179842
this->adjust_livepatheffect(transform);
return transform;