From 135c0703d9a66719bffe01df114473d398b16f7a Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Thu, 5 May 2022 07:19:20 -0400 Subject: [PATCH 1/2] 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 --- DemoPrograms/Demo_All_Elements_Simple.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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': From c8821426b50a38eba47bd968a3d7ba6ef0f4b8c2 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Thu, 5 May 2022 07:20:08 -0400 Subject: [PATCH 2/2] Added keep on top since it's a clock.... perhaps a personal taste thing and maybe should be an option? Will ponder this for desktop widgets across the board.... hmmmm...... --- DemoPrograms/Demo_Desktop_Widget_Time_Handwritten.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)