summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaren Hachmann <934908-Moini@users.noreply.gitlab.com>2019-04-25 00:24:27 +0000
committerMaren Hachmann <934908-Moini@users.noreply.gitlab.com>2019-04-25 00:24:27 +0000
commitf9ebddba0367aaccb68ab1c743b6b7e0fcb7e904 (patch)
tree793422e68ce60c63e1794f16d8560a62998edbd0 /src
parentAdd missing descriptions (mostly for experimental LPEs) (diff)
downloadinkscape-f9ebddba0367aaccb68ab1c743b6b7e0fcb7e904.tar.gz
inkscape-f9ebddba0367aaccb68ab1c743b6b7e0fcb7e904.zip
Update lpe-bool.cpp
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-bool.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/live_effects/lpe-bool.cpp b/src/live_effects/lpe-bool.cpp
index 7644f3b8e..41e9d7a8e 100644
--- a/src/live_effects/lpe-bool.cpp
+++ b/src/live_effects/lpe-bool.cpp
@@ -51,16 +51,16 @@ static const Util::EnumData<LPEBool::bool_op_ex> BoolOpData[LPEBool::bool_op_ex_
static const Util::EnumDataConverter<LPEBool::bool_op_ex> BoolOpConverter(BoolOpData, sizeof(BoolOpData) / sizeof(*BoolOpData));
static const Util::EnumData<fill_typ> FillTypeData[] = {
- { fill_oddEven, N_("odd-even"), "oddeven" },
+ { fill_oddEven, N_("even-odd"), "oddeven" },
{ fill_nonZero, N_("non-zero"), "nonzero" },
{ fill_positive, N_("positive"), "positive" },
- { fill_justDont, N_("from curve"), "from-curve" }
+ { fill_justDont, N_("take from object"), "from-curve" }
};
static const Util::EnumDataConverter<fill_typ> FillTypeConverter(FillTypeData, sizeof(FillTypeData) / sizeof(*FillTypeData));
static const Util::EnumData<fill_typ> FillTypeDataThis[] = {
- { fill_oddEven, N_("odd-even"), "oddeven" },
+ { fill_oddEven, N_("even-odd"), "oddeven" },
{ fill_nonZero, N_("non-zero"), "nonzero" },
{ fill_positive, N_("positive"), "positive" }
};
@@ -71,10 +71,10 @@ LPEBool::LPEBool(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
operand_path(_("Operand path:"), _("Operand for the boolean operation"), "operand-path", &wr, this),
bool_operation(_("Operation:"), _("Boolean Operation"), "operation", BoolOpConverter, &wr, this, bool_op_ex_union),
- swap_operands(_("Swap operands:"), _("Swap operands (useful e.g. for difference)"), "swap-operands", &wr, this),
- rmv_inner(_("Remove inner:"), _("For cut operations: remove inner (non-contour) lines of cutting path to avoid invisible extra points"), "rmv-inner", &wr, this),
- fill_type_this(_("Fill type this:"), _("Fill type (winding mode) for this path"), "filltype-this", FillTypeConverterThis, &wr, this, fill_oddEven),
- fill_type_operand(_("Fill type operand:"), _("Fill type (winding mode) for operand path"), "filltype-operand", FillTypeConverter, &wr, this, fill_justDont)
+ swap_operands(_("Swap operands"), _("Swap operands (useful e.g. for difference)"), "swap-operands", &wr, this),
+ rmv_inner(_("Remove inner"), _("For cut operations: remove inner (non-contour) lines of cutting path to avoid invisible extra points"), "rmv-inner", &wr, this),
+ fill_type_this(_("Fill type (this):"), _("Fill type (winding mode) for this path"), "filltype-this", FillTypeConverterThis, &wr, this, fill_oddEven),
+ fill_type_operand(_("Fill type (operand):"), _("Fill type (winding mode) for operand path"), "filltype-operand", FillTypeConverter, &wr, this, fill_justDont)
{
registerParameter(&operand_path);
registerParameter(&bool_operation);