aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/python/kle2xy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/kle2xy.py b/lib/python/kle2xy.py
index bff1d025b..003476f92 100644
--- a/lib/python/kle2xy.py
+++ b/lib/python/kle2xy.py
@@ -110,8 +110,8 @@ class KLE2xy(list):
else:
current_key['name'] = key
- current_key['row'] = current_row
- current_key['column'] = current_col
+ current_key['row'] = round(current_row, 2)
+ current_key['column'] = round(current_col, 2)
# Determine the X center
x_center = (current_key['width'] * self.key_width) / 2