Release 2.30 refresh of readme and demos

Lots of forms went borderless so important that 2.30 be released.
This commit is contained in:
MikeTheWatchGuy 2018-09-06 12:01:19 -04:00
parent bc00740d03
commit 32a9dc79ce
8 changed files with 99 additions and 81 deletions

View file

@ -20,7 +20,7 @@ layout = [[sg.T('User:', pad=((3,0),0)), sg.OptionMenu(values = ('User 1', 'User
]
form = sg.FlexForm("Time Tracker", default_element_size=(12,1), text_justification='r', auto_size_text=False, auto_size_buttons=False,
default_button_element_size=(12,1))
default_button_element_size=(12,1), no_titlebar=True)
form.Layout(layout)
recording = have_data = False
while True: