Merge pull request #3982 from PySimpleGUI/Dev-latest

Removed extra read
This commit is contained in:
PySimpleGUI 2021-03-01 04:27:45 -05:00 committed by GitHub
commit 27aa2ffb04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ B = sg.B
layout = [[M(size=(30, 3))],
[B('OK')]]
window = sg.Window('Shortcuts', layout).read()
window = sg.Window('Shortcuts', layout)
event, values = window.read()
sg.popup_scrolled(event, values)
window.close()