summaryrefslogtreecommitdiffstats
path: root/src/widgets/toolbox.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2007-03-26 15:38:38 +0000
committerjoncruz <joncruz@users.sourceforge.net>2007-03-26 15:38:38 +0000
commitb46d54ce8cb34aef37d075557b0d8c249e46d473 (patch)
treed04a5ce28a8d6b21aadb0870a8598b287c25e726 /src/widgets/toolbox.cpp
parentpurge unused stuff, copyedit (diff)
downloadinkscape-b46d54ce8cb34aef37d075557b0d8c249e46d473.tar.gz
inkscape-b46d54ce8cb34aef37d075557b0d8c249e46d473.zip
Corrected extra "-2" thinning value to be positive
(bzr r2765)
Diffstat (limited to 'src/widgets/toolbox.cpp')
-rw-r--r--src/widgets/toolbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index d8903b404..0b7296ce0 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -2161,7 +2161,7 @@ sp_calligraphy_toolbox_new(SPDesktop *desktop)
{
/* Thinning */
gchar const* labels[] = {_("(speed blows up stroke)"), 0, 0, _("(slight widening)"), _("(constant width)"), _("(slight thinning, default)"), 0, 0, _("(speed deflates stroke)")};
- gdouble values[] = {-1, -0.4, -0.2, -0.1, 0, 0.1, -0.2, 0.4, 1};
+ gdouble values[] = {-1, -0.4, -0.2, -0.1, 0, 0.1, 0.2, 0.4, 1};
EgeAdjustmentAction* eact = create_adjustment_action( "ThinningAction",
_("Thinning:"), _("How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 makes them broader, 0 makes width independent of velocity)"),
"tools.calligraphic", "thinning", 0.1,