Renamed return value from Read call from button to event... EVERYWHERE

This commit is contained in:
MikeTheWatchGuy 2018-10-15 16:07:23 -04:00
parent 43526e0182
commit c79a8772cc
86 changed files with 7992 additions and 12709 deletions

View file

@ -11,15 +11,15 @@ layout = [[sg.Text("Hold down a key")],
window = sg.Window("Realtime Keyboard Test", return_keyboard_events=True, use_default_focus=False).Layout(layout)
while True:
button, value = window.ReadNonBlocking()
event, values = window.ReadNonBlocking()
if button == "OK":
print(button, value, "exiting")
if event == "OK":
print(event, values, "exiting")
break
if button is not None:
if len(button) == 1:
print('%s - %s'%(button, ord(button)))
if event is not None:
if len(event) == 1:
print('%s - %s' % (event, ord(event)))
else:
print(button)
elif value is None:
print(event)
elif values is None:
break