From 31a65ddf189cb798d18f75bfd4b456c67f2ae35b Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Wed, 3 Mar 2021 10:12:31 -0500 Subject: [PATCH] Added keep on top to the theme swatches window --- PySimpleGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 047022dc..8e3e02e1 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -15218,7 +15218,7 @@ def _theme_preview_window_swatches(): layout += [[B('Exit')]] # create and return Window that uses the layout - return Window('Theme Color Swatches', layout, background_color='black', finalize=True) + return Window('Theme Color Swatches', layout, background_color='black', finalize=True, keep_on_top=True)