Merge pull request #9 from wilderjds/normalize

Normalize unsculpted SA profile to row 3
plate-64p
Kirpal Demian 8 years ago committed by GitHub
commit 0fc83f134e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      import_keyboard.py

@ -281,6 +281,10 @@ def getKey(filePath):
else:
key["p"] = "DCS"
# Normalize unsculpted SA profile to SA ROW 3
if key["p"] = "SA":
key["p"] = "SA3"
if key["p"] == "" or key["p"] not in ["DSA", "DCS", "SA1","SA2", "SA3", "SA4"]:
key["p"] = "DCS"
@ -353,6 +357,10 @@ def getKey(filePath):
else:
key["p"] = "DCS"
# Normalize unsculpted SA profile to SA ROW 3
if key["p"] = "SA":
key["p"] = "SA3"
if key["p"] == "" or key["p"] not in ["DSA", "DCS", "SA1", "SA2", "SA3", "SA4"]:
key["p"] = "DCS"

Loading…
Cancel
Save