Merge pull request #4733 from PySimpleGUI/Dev-latest

Fix for debugger (checked into wrong branch)
This commit is contained in:
PySimpleGUI 2021-09-25 15:25:15 -04:00 committed by GitHub
commit 555bf791a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3
version = __version__ = "4.47.0.11 Unreleased"
version = __version__ = "4.47.0.12 Unreleased"
"""
Changelog since 4.47.0 release to PyPI on 30 Aug 2021
@ -36,6 +36,8 @@ version = __version__ = "4.47.0.11 Unreleased"
4.47.0.11
Right click exit available for the SDK reference window in case it gets off the screen on something like a Pi with a small screen.
Fixed return type for Window.read_all_windows
4.47.0.12
Fix for popout debugger using binding (finally got it)
"""
__version__ = version.split()[0] # For PEP 396 and PEP 345
@ -20463,12 +20465,10 @@ class _Debugger():
layout.append(line)
layout = [[T(SYMBOL_X, enable_events=True, key='-EXIT-', font='_ 7')], [Column(layout)]]
Window._read_call_from_debugger = True
self.popout_window = Window('Floating', layout, alpha_channel=0, no_titlebar=True, grab_anywhere=True,
element_padding=(0, 0), margins=(0, 0), keep_on_top=True,
right_click_menu=['&Right', ['Debugger::RightClick', 'Exit::RightClick']], location=location, finalize=False)
Window._read_call_from_debugger = True
self.popout_window.Finalize()
right_click_menu=['&Right', ['Debugger::RightClick', 'Exit::RightClick']], location=location, finalize=True)
Window._read_call_from_debugger = False
if location == (None, None):