Removed window border

This commit is contained in:
MikeTheWatchGuy 2018-09-06 17:08:29 -04:00
parent de045f6e82
commit c9656c7815
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ def main():
[sg.ReadFormButton('Exit', size=(10, 2), pad=((280, 0), 3), font='Helvetica 14')]]
# create the form and show it without the plot
form = sg.FlexForm('Demo Application - Embedding Matplotlib In PySimpleGUI')
form = sg.FlexForm('Demo Application - Embedding Matplotlib In PySimpleGUI', no_titlebar=True)
form.Layout(layout)
form.ReadNonBlocking()