Had timeout=1 which is a terrible idea (it's old code)

This commit is contained in:
PySimpleGUI 2021-05-29 16:31:16 -04:00
parent 8dd2bfcdb0
commit 616ec13c9c
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def main():
# ------------------- GUI Event Loop -------------------
while True: # Event Loop
event, values = window.read(timeout=1)
event, values = window.read(timeout=0)
# print(event, values)
if event in (sg.WIN_CLOSED, 'Exit'):
break