diff options
| author | Jabiertxof <jabier.arraiza@marker.es> | 2019-05-21 10:35:26 +0000 |
|---|---|---|
| committer | Jabiertxof <jabier.arraiza@marker.es> | 2019-05-21 10:35:26 +0000 |
| commit | f0c19696be05686219208abad41b29b7ce6601a6 (patch) | |
| tree | 9f616d1fee9aa3b0e2a551f7a02e4731d509f302 /src/object | |
| parent | Fix alignment of ruler ticks (diff) | |
| download | inkscape-f0c19696be05686219208abad41b29b7ce6601a6.tar.gz inkscape-f0c19696be05686219208abad41b29b7ce6601a6.zip | |
Improvemets to GeomPathstroke and Offset LPE
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(); |
