Merge pull request #1470 from PySimpleGUI/Dev-latest

Added missing init call
This commit is contained in:
MikeTheWatchGuy 2019-05-24 22:29:31 -04:00 committed by GitHub
commit 0920a3319a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import PySimpleGUIdebugger
PySimpleGUIdebugger.refresh(locals(), globals())
"""
PySimpleGUIdebugger.initialize()
layout = [
[sg.T('A typical PSG application')],
@ -36,3 +37,5 @@ while True: # Event Loop
break
counter += 1
window.Element('_OUT_').Update(values['_IN_'])
window.Close()