Fixed use custom title & menubar bug - wasn't remembering the setting and was stuck in custom mode after selecting it once. Removed the debug window print

This commit is contained in:
PySimpleGUI 2022-05-05 07:19:20 -04:00
parent e16545a991
commit 135c0703d9
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,7 @@ window = make_window()
while True:
event, values = window.read()
sg.Print(event, values)
# sg.Print(event, values)
if event == sg.WIN_CLOSED or event == 'Exit':
break
if event == 'Edit Me':
@ -95,6 +95,7 @@ while True:
window = make_window()
if event == '-USE CUSTOM TITLEBAR-':
use_custom_titlebar = values['-USE CUSTOM TITLEBAR-']
sg.set_options(use_custom_titlebar=use_custom_titlebar)
window.close()
window = make_window()
elif event == 'Version':