Added missing init call

This commit is contained in:
MikeTheWatchGuy 2019-05-24 22:28:39 -04:00
parent abcae725d1
commit cf02da33c9
1 changed files with 3 additions and 0 deletions

View File

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