Release 3.12.0 & 1.12.0

This commit is contained in:
MikeTheWatchGuy 2018-10-28 20:01:03 -04:00
parent 42c5499687
commit f60137c4b2
83 changed files with 2030 additions and 1118 deletions

View file

@ -638,8 +638,8 @@ prev_x, prev_y = canvas_left, canvas_bottom
while True:
time.sleep(.2)
event, values = window.ReadNonBlocking()
if event == 'Quit' or values is None:
event, values = window.Read(timeout=0)
if event == 'Quit' or event is None:
break
if g_response_time is None or prev_response_time == g_response_time: