Merge pull request #3996 from PySimpleGUI/Dev-latest

Added keep on top to the theme swatches window
This commit is contained in:
PySimpleGUI 2021-03-03 10:13:12 -05:00 committed by GitHub
commit eff46ad319
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15218,7 +15218,7 @@ def _theme_preview_window_swatches():
layout += [[B('Exit')]] layout += [[B('Exit')]]
# create and return Window that uses the layout # 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)