Merge pull request #144 from MikeTheWatchGuy/Dev-latest

Removed window border
This commit is contained in:
MikeTheWatchGuy 2018-09-06 17:09:06 -04:00 committed by GitHub
commit f374cd3cf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()