diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-09-16 19:35:57 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-09-16 19:35:57 +0000 |
| commit | d2ef70954e92b296fd8a03a6d26f4bc98e4b2369 (patch) | |
| tree | 53337ccd284cd3cc6186324ec1417de68ed97b7c /src/live_effects | |
| parent | Active SVG2 Flow Text by default (diff) | |
| download | inkscape-d2ef70954e92b296fd8a03a6d26f4bc98e4b2369.tar.gz inkscape-d2ef70954e92b296fd8a03a6d26f4bc98e4b2369.zip | |
Fix operands in LPE bool
Diffstat (limited to 'src/live_effects')
| -rw-r--r-- | src/live_effects/lpe-bool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-bool.cpp b/src/live_effects/lpe-bool.cpp index 0f79c3b73..68d95b8e8 100644 --- a/src/live_effects/lpe-bool.cpp +++ b/src/live_effects/lpe-bool.cpp @@ -373,7 +373,7 @@ void LPEBool::doEffect(SPCurve *curve) operand->setHidden(false); } bool_op_ex op = bool_operation.get_value(); - bool swap = swap_operands.get_value(); + bool swap = !(swap_operands.get_value()); // operand->set_transform(i2anc_affine(sp_lpe_item, sp_lpe_item->parent)); Geom::Affine current = sp_item_transform_repr(sp_lpe_item); |
