summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2009-05-07 18:34:12 +0000
committerJazzyNico <JazzyNico@users.sourceforge.net>2009-05-07 18:34:12 +0000
commit92fc38eee2d4ffa6f1addc65ffcb340f2477ce77 (patch)
treeace2c1ea3500fc3c9477b5417b81130167c7cfb6 /src
parentDefault values for lots of filter attributes, see bug 372412. (diff)
downloadinkscape-92fc38eee2d4ffa6f1addc65ffcb340f2477ce77.tar.gz
inkscape-92fc38eee2d4ffa6f1addc65ffcb340f2477ce77.zip
Minor correction in message
(bzr r7835)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-rough-hatches.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-rough-hatches.cpp b/src/live_effects/lpe-rough-hatches.cpp
index 4cb02ba9e..4df1064ce 100644
--- a/src/live_effects/lpe-rough-hatches.cpp
+++ b/src/live_effects/lpe-rough-hatches.cpp
@@ -228,7 +228,7 @@ LPERoughHatches::LPERoughHatches(LivePathEffectObject *lpeobject) :
//FIXME: top/bottom names are inverted in the UI/svg and in the code!!
scale_tf(_("Half turns smoothness: 1st side, in"), _("Set smoothness/sharpness of path when reaching a 'bottom' halfturn. 0=sharp, 1=default"), "scale_bf", &wr, this, 1.),
scale_tb(_("1st side, out"), _("Set smoothness/sharpness of path when leaving a 'bottom' halfturn. 0=sharp, 1=default"), "scale_bb", &wr, this, 1.),
- scale_bf(_("2nd side, in "), _("Set smoothness/sharpness of path when reaching a 'top' halfturn. 0=sharp, 1=default"), "scale_tf", &wr, this, 1.),
+ scale_bf(_("2nd side, in"), _("Set smoothness/sharpness of path when reaching a 'top' halfturn. 0=sharp, 1=default"), "scale_tf", &wr, this, 1.),
scale_bb(_("2nd side, out"), _("Set smoothness/sharpness of path when leaving a 'top' halfturn. 0=sharp, 1=default"), "scale_tb", &wr, this, 1.),
top_edge_variation(_("Magnitude jitter: 1st side"), _("Randomly moves 'bottom' halfsturns to produce magnitude variations."), "bottom_edge_variation", &wr, this, 0),
bot_edge_variation(_("2nd side"), _("Randomly moves 'top' halfsturns to produce magnitude variations."), "top_edge_variation", &wr, this, 0),