summaryrefslogtreecommitdiffstats
path: root/src/sp-item-group.cpp
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2017-01-03 14:58:20 +0000
committerJabiertxof <jtx@jtx>2017-01-03 14:58:20 +0000
commit1154b598331b962b3ea6b5f0daabf632b538fe12 (patch)
tree722916bcbbe335eb0e41543e3bccaea5d07c248a /src/sp-item-group.cpp
parentRemove clone original code (diff)
downloadinkscape-1154b598331b962b3ea6b5f0daabf632b538fe12.tar.gz
inkscape-1154b598331b962b3ea6b5f0daabf632b538fe12.zip
Fixing some bugs
(bzr r15295.1.48)
Diffstat (limited to 'src/sp-item-group.cpp')
-rw-r--r--src/sp-item-group.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sp-item-group.cpp b/src/sp-item-group.cpp
index 7b2507b5e..b9a8fb83f 100644
--- a/src/sp-item-group.cpp
+++ b/src/sp-item-group.cpp
@@ -925,6 +925,15 @@ void SPGroup::update_patheffect(bool write) {
}
sp_group_perform_patheffect(this, this, write);
+
+ for (PathEffectList::iterator it = this->path_effect_list->begin(); it != this->path_effect_list->end(); ++it)
+ {
+ LivePathEffectObject *lpeobj = (*it)->lpeobject;
+
+ if (lpeobj && lpeobj->get_lpe()) {
+ lpeobj->get_lpe()->doAfterEffect(this);
+ }
+ }
}
}