diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-10-14 19:29:10 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-10-14 19:29:10 +0000 |
| commit | ee527cbb228c6fba9c83bba5058d1a68ac647060 (patch) | |
| tree | 0e9e4884b2df7686214403b3a7707fe91e9a68ba /src/live_effects/effect.cpp | |
| parent | Remove deprecated GNOME VFS (diff) | |
| download | inkscape-ee527cbb228c6fba9c83bba5058d1a68ac647060.tar.gz inkscape-ee527cbb228c6fba9c83bba5058d1a68ac647060.zip | |
Fixing problems with nested LPE and convert to paths
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 2e1160764..5674e29dc 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -563,8 +563,8 @@ void Effect::doBeforeEffect_impl(SPLPEItem const* lpeitem) setCurrentShape(shape); doBeforeEffect(lpeitem); if (apply_to_clippath_and_mask && SP_IS_GROUP(sp_lpe_item)) { - sp_lpe_item->apply_to_clippath(sp_lpe_item); - sp_lpe_item->apply_to_mask(sp_lpe_item); + sp_lpe_item->applyToClipPath(sp_lpe_item); + sp_lpe_item->applyToMask(sp_lpe_item); } update_helperpath(); } |
