v2 bug fixes

This commit is contained in:
langolierz
2019-11-29 07:24:01 +00:00
parent 2ccbc8bf07
commit c90ddeb703
4 changed files with 103 additions and 60 deletions

View File

@@ -20,7 +20,7 @@ class NumpadInput(object):
def on_key_press(self, event):
numpad = list(string.ascii_lowercase[0:19])
if event.char is '.':
if event.char is '.' or event.char is 'z':
self.actions.quit_the_program()
if event.char is 's':
event.char = self.on_0_key_press()