Merge pull request #3815 from PySimpleGUI/Dev-latest

Dev latest
This commit is contained in:
PySimpleGUI 2021-01-19 13:34:54 -05:00 committed by GitHub
commit 560fa24e1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 8 deletions

View file

@ -2758,7 +2758,7 @@ layout = [ [sg.Text('Text area', key='_TEXT_')],
[sg.Input(key='_URL_')],
[sg.Button('Chrome'), sg.Button('Exit')]]
window = sg.Window('Window Title', layuout)
window = sg.Window('Window Title', layout)
while True: # Event Loop
event, values = window.read()