From cf02da33c9e8ad6d26c0d1009f8994c75b86396e Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Fri, 24 May 2019 22:28:39 -0400 Subject: [PATCH] Added missing init call --- DemoPrograms/Demo_Debugger_Integration.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DemoPrograms/Demo_Debugger_Integration.py b/DemoPrograms/Demo_Debugger_Integration.py index 732074fb..a708701f 100644 --- a/DemoPrograms/Demo_Debugger_Integration.py +++ b/DemoPrograms/Demo_Debugger_Integration.py @@ -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()