summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2008-05-09 14:35:57 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2008-05-09 14:35:57 +0000
commite2544cee51485d8339c92c6717f055cd9c4bde87 (patch)
tree438424295ea3c7c57de8e48f6f6eb2dfa1b47f87 /src
parentfix enums (diff)
downloadinkscape-e2544cee51485d8339c92c6717f055cd9c4bde87.tar.gz
inkscape-e2544cee51485d8339c92c6717f055cd9c4bde87.zip
copyedit
(bzr r5640)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-knot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-knot.cpp b/src/live_effects/lpe-knot.cpp
index 5ac4a98d4..525cb66d5 100644
--- a/src/live_effects/lpe-knot.cpp
+++ b/src/live_effects/lpe-knot.cpp
@@ -24,7 +24,7 @@ namespace LivePathEffect {
LPEKnot::LPEKnot(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
// initialise your parameters here:
- interruption_width(_("Interruption width"), _("Howmuch the lower strand is obscured by the upper."), "interruption_width", &wr, this, 10)
+ interruption_width(_("Gap width"), _("The width of the gap in the path where it self-intersects"), "interruption_width", &wr, this, 10)
{
// register all your parameters here, so Inkscape knows which parameters this effect has:
registerParameter( dynamic_cast<Parameter *>(&interruption_width) );