Merge pull request #20 from wilderjds/fix-tall-keys

Adjust height for tall keys
plate-64p
Kirpal Demian 8 years ago committed by GitHub
commit 2ad99eaaa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      import_keyboard.py

@ -225,6 +225,8 @@ def getKey(filePath):
key["h"] = prev["h"]
else:
key["h"] = 1
if key["h"] > 1:
key["h"] += (int(key["h"])-1) * 0.05
if "x2" in prev:
key["x2"] = prev["x2"]
if "y2" in prev:

Loading…
Cancel
Save