summaryrefslogtreecommitdiffstats
path: root/src/sp-lpe-item.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-04-29 23:55:14 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-04-29 23:55:14 +0000
commit2a5ab3d65249a8a7dde08097c87562d5bca598f2 (patch)
tree9287e2bd1c6af8f005327d625a6f784e12984ce4 /src/sp-lpe-item.cpp
parentUpdate to trunk (diff)
downloadinkscape-2a5ab3d65249a8a7dde08097c87562d5bca598f2.tar.gz
inkscape-2a5ab3d65249a8a7dde08097c87562d5bca598f2.zip
Fix a small issue with Attach Path
(bzr r13090.1.69)
Diffstat (limited to 'src/sp-lpe-item.cpp')
-rw-r--r--src/sp-lpe-item.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sp-lpe-item.cpp b/src/sp-lpe-item.cpp
index b5dd74fc6..19a688ca5 100644
--- a/src/sp-lpe-item.cpp
+++ b/src/sp-lpe-item.cpp
@@ -242,7 +242,7 @@ bool SPLPEItem::performPathEffect(SPCurve *curve) {
// Groups have their doBeforeEffect called elsewhere
if (!SP_IS_GROUP(this)) {
- lpe->doBeforeEffect(this);
+ lpe->doBeforeEffect_impl(this);
}
try {
@@ -256,6 +256,9 @@ bool SPLPEItem::performPathEffect(SPCurve *curve) {
}
return false;
}
+ if (!SP_IS_GROUP(this)) {
+ lpe->doAfterEffect(this);
+ }
}
}
}