diff --git a/DemoPrograms/Demo_All_Elements_Simple.py b/DemoPrograms/Demo_All_Elements_Simple.py index bd9c7a0b..fffe50ed 100644 --- a/DemoPrograms/Demo_All_Elements_Simple.py +++ b/DemoPrograms/Demo_All_Elements_Simple.py @@ -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': diff --git a/DemoPrograms/Demo_Desktop_Widget_Time_Handwritten.py b/DemoPrograms/Demo_Desktop_Widget_Time_Handwritten.py index 64498a1d..0b2f1fab 100644 --- a/DemoPrograms/Demo_Desktop_Widget_Time_Handwritten.py +++ b/DemoPrograms/Demo_Desktop_Widget_Time_Handwritten.py @@ -29,7 +29,7 @@ def main(): layout = [[sg.Image(blank, key=('-IMAGE-', i), p=0, subsample=subsample) for i in range(max_digits)]] - window = sg.Window('', layout, background_color='black', no_titlebar=True, grab_anywhere=True, right_click_menu=right_click_menu, location=location, enable_close_attempted_event=True, alpha_channel=alpha, metadata=subsample) + window = sg.Window('', layout, background_color='black', no_titlebar=True, grab_anywhere=True, right_click_menu=right_click_menu, location=location, keep_on_top=True, enable_close_attempted_event=True, alpha_channel=alpha, metadata=subsample) while True: event, values = window.read(timeout=300)