Refresh of debugger

This commit is contained in:
MikeTheWatchGuy 2019-05-24 23:52:35 -04:00
parent cf02da33c9
commit 4d756d58cb
2 changed files with 9 additions and 9 deletions

View file

@ -12,7 +12,6 @@ import PySimpleGUIdebugger
PySimpleGUIdebugger.refresh(locals(), globals())
"""
PySimpleGUIdebugger.initialize()
layout = [
[sg.T('A typical PSG application')],
@ -29,6 +28,7 @@ window = sg.Window('This is your Application Window', layout)
# Variables that we'll use to demonstrate the debugger's features
counter = 0
timeout = 100
PySimpleGUIdebugger.initialize()
while True: # Event Loop
PySimpleGUIdebugger.refresh(locals(), globals()) # call the debugger to refresh the items being shown