summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorGyuris Gellért <bubu@ujevangelizacio.hu>2019-08-20 22:42:06 +0000
committerGyuris Gellért <bubu@ujevangelizacio.hu>2019-08-20 22:42:06 +0000
commite8388c7cca9a452d6eb103f2f949e9afe29d5e0f (patch)
treeb70bb8e8c235c46321cf38b6e2bb0b23d92883fc /src/live_effects
parentTypo in tooltip. (diff)
downloadinkscape-e8388c7cca9a452d6eb103f2f949e9afe29d5e0f.tar.gz
inkscape-e8388c7cca9a452d6eb103f2f949e9afe29d5e0f.zip
Typo in tooltip 2.
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/lpe-offset.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-offset.cpp b/src/live_effects/lpe-offset.cpp
index 3ec66d433..d9017a144 100644
--- a/src/live_effects/lpe-offset.cpp
+++ b/src/live_effects/lpe-offset.cpp
@@ -75,7 +75,7 @@ static const Util::EnumDataConverter<unsigned> JoinTypeConverter(JoinTypeData, s
LPEOffset::LPEOffset(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
unit(_("Unit"), _("Unit of measurement"), "unit", &wr, this, "mm"),
- offset(_("Offset:"), _("Offset)"), "offset", &wr, this, 0.0),
+ offset(_("Offset:"), _("Offset"), "offset", &wr, this, 0.0),
linejoin_type(_("Join:"), _("Determines the shape of the path's corners"), "linejoin_type", JoinTypeConverter, &wr, this, JOIN_ROUND),
miter_limit(_("Miter limit:"), _("Maximum length of the miter join (in units of stroke width)"), "miter_limit", &wr, this, 4.0),
attempt_force_join(_("Force miter"), _("Overrides the miter limit and forces a join."), "attempt_force_join", &wr, this, true),