summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-bool.cpp
diff options
context:
space:
mode:
authorMoini <moini@noreply.invalid>2019-07-20 23:06:24 +0000
committerMoini <moini@noreply.invalid>2019-07-20 23:06:24 +0000
commite418c59167e0413027d7a297c214ad1d47956e47 (patch)
tree7fac5a1531ab97c99125d07f8e34f1310430dd3e /src/live_effects/lpe-bool.cpp
parentPreferences: save shortcut file location relative to INKSCAPE_DATADIR (diff)
parentImprove title text for LPE button that pastes a path from the clipboard to us... (diff)
downloadinkscape-e418c59167e0413027d7a297c214ad1d47956e47.tar.gz
inkscape-e418c59167e0413027d7a297c214ad1d47956e47.zip
Improve some LPE descriptions.
Diffstat (limited to 'src/live_effects/lpe-bool.cpp')
-rw-r--r--src/live_effects/lpe-bool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/lpe-bool.cpp b/src/live_effects/lpe-bool.cpp
index cecc575fe..0f79c3b73 100644
--- a/src/live_effects/lpe-bool.cpp
+++ b/src/live_effects/lpe-bool.cpp
@@ -52,16 +52,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" }
};