diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2016-03-19 11:18:58 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2016-03-19 11:18:58 +0000 |
| commit | c47d7b8e5756a239d7dc030b0a0c1905d6a574bf (patch) | |
| tree | 1adf4c8da727a08e27ae0b24f1fdffb338e0adee /src/live_effects | |
| parent | update to trunk (diff) | |
| parent | Fix a problem with LPE on clips and paths making extremly slow on LPE (diff) | |
| download | inkscape-c47d7b8e5756a239d7dc030b0a0c1905d6a574bf.tar.gz inkscape-c47d7b8e5756a239d7dc030b0a0c1905d6a574bf.zip | |
update to trunk
(bzr r13708.1.46)
Diffstat (limited to 'src/live_effects')
| -rw-r--r-- | src/live_effects/effect.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 2e811ed37..c6ecba30a 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -467,6 +467,10 @@ void Effect::doBeforeEffect_impl(SPLPEItem const* lpeitem) pathvector_before_effect = sp_curve->get_pathvector(); } 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); + } } /** |
