Merge pull request #1499 from PySimpleGUI/Dev-latest

More showing
This commit is contained in:
MikeTheWatchGuy 2019-05-30 13:13:26 -04:00 committed by GitHub
commit 0eccc9fd71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -6246,6 +6246,9 @@ def StartupTK(my_flex_form:Window):
root = tk.Toplevel()
root.bind('<Cancel>', show_debugger_window)
# root.bind('<Pause>', show_debugger_popout_window)
root.bind('<Pause>', Debugger._build_floating_window)
try:
root.attributes('-alpha', 0) # hide window while building it. makes for smoother 'paint'
except: