Merge pull request #5701 from PySimpleGUI/Dev-latest

Removed unnecessary check for isinstance of tuple.... a new pattern l…
This commit is contained in:
PySimpleGUI 2022-07-18 13:49:24 -04:00 committed by GitHub
commit 23b69a923c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -56,8 +56,7 @@ def main():
sg.execute_editor(__file__) sg.execute_editor(__file__)
elif event == 'Version': elif event == 'Version':
sg.popup_scrolled(__file__, sg.get_versions(), location=window.current_location(), keep_on_top=True, non_blocking=True) sg.popup_scrolled(__file__, sg.get_versions(), location=window.current_location(), keep_on_top=True, non_blocking=True)
if isinstance(event, tuple): elif event[0] == '-DEL-':
if event[0] == '-DEL-':
window[('-ROW-', event[1])].update(visible=False) window[('-ROW-', event[1])].update(visible=False)
window.close() window.close()