diff options
Diffstat (limited to 'src/object')
| -rwxr-xr-x | src/object/sp-lpe-item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object/sp-lpe-item.cpp b/src/object/sp-lpe-item.cpp index b43a0b926..ec7b6469e 100755 --- a/src/object/sp-lpe-item.cpp +++ b/src/object/sp-lpe-item.cpp @@ -237,7 +237,7 @@ bool SPLPEItem::performOnePathEffect(SPCurve *curve, SPShape *current, Inkscape: return false; } //if is not clip or mask or LPE apply to clip and mask - if (!(is_clip_or_mask && !lpe->apply_to_clippath_and_mask)) { + if (!is_clip_or_mask || lpe->apply_to_clippath_and_mask) { lpe->setCurrentShape(current); if (!SP_IS_GROUP(this)) { lpe->pathvector_before_effect = curve->get_pathvector(); |
