Added missing type

pull/11/head
Nicholas Hope 2022-08-06 14:49:53 -04:00
parent abdbbca16c
commit 1ca30fe589
1 changed files with 4 additions and 2 deletions

View File

@ -57,7 +57,8 @@ validKeyList = [
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
'u', 'v', 'w', 'x', 'y', 'z',
'mouse1', 'mouse2', 'mouse3', 'mouse4', 'mouse5',
'shift', 'capslock', 'ctrl', 'semicolon', 'space', 'enter'
'shift', 'capslock', 'ctrl', 'semicolon', 'space', 'enter',
'backspace'
]
def validKey(key):
@ -75,7 +76,8 @@ def validBindType(key, data: dict):
"impulse",
"hold",
"toggle",
"double"
"double",
"repeat"
]
errMsgs = []