Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/smoot_toolbar.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2011-09-02 18:31:46 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-09-02 19:09:20 (GMT)
commitfa8c34f99d3a9fa94c0a5cb4ccb4a593136fb85c (patch)
treef051cf386a7f81db843f0fdde6f515a83e9d7868 /smoot_toolbar.py
parent2be09c8222c2a54f228ed7fe8c0d7c7a653d8e83 (diff)
Fix factor in centimeters unit
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org> Signed-off-by: Rafael Ortiz <rafael@activitycentral.com>
Diffstat (limited to 'smoot_toolbar.py')
-rw-r--r--smoot_toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/smoot_toolbar.py b/smoot_toolbar.py
index 5e77566..dc6f8d6 100644
--- a/smoot_toolbar.py
+++ b/smoot_toolbar.py
@@ -32,7 +32,7 @@ UNITS = [_('meters'), _('centimeters'),
_('inches'), _('feet'), _('yards'),
_('custom units')]
UNIT_DICTIONARY = {METERS: (_('meters'), 1.0),
- CENTIMETERS: (_('centimeters'), 10.0),
+ CENTIMETERS: (_('centimeters'), 100.0),
INCHES: (_('inches'), 39.37),
FEET: (_('feet'), 3.28),
YARDS: (_('yards'), 1.09),