Update inputManager.py

This commit is contained in:
chrys87 2016-09-27 16:15:26 +02:00 committed by GitHub
parent 318a153c22
commit cdf1c00434

View File

@ -70,7 +70,9 @@ class inputManager():
def convertEventName(self, eventName):
if not eventName:
return ''
if eventName == '':
return ''
eventName = eventName.upper()
if eventName == 'KEY_LEFTCTRL':
eventName = 'KEY_CTRL'
elif eventName == 'KEY_RIGHTCTRL':