Merge pull request #2279 from PySimpleGUI/Dev-latest

Made loop run more frequently
This commit is contained in:
PySimpleGUI 2019-11-29 22:08:09 -05:00 committed by GitHub
commit d713166955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ def the_gui():
# --------------------- EVENT LOOP ---------------------
while True:
event, values = window.read(timeout=400)
event, values = window.read(timeout=100)
if event in (None, 'Exit'):
break
elif event.startswith('Do'):