RELEASE 3.5.2

This commit is contained in:
MikeTheWatchGuy 2018-09-23 12:16:50 -04:00
parent 50261625a4
commit 7e00dd16fe
19 changed files with 745 additions and 231 deletions

View file

@ -11,7 +11,7 @@ form = sg.FlexForm("Font size selector", grab_anywhere=False)
form.Layout(layout)
while True:
button, values= form.Read()
if button is None:
if button is None or button == 'Quit':
break
sz_spin = int(values['spin'])
sz_slider = int(values['slider'])