From d99ee206111d2f1c0bf39385af32405d36d7cc4d Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Tue, 27 Jul 2021 10:54:14 -0400 Subject: [PATCH] Display mac patches when startup on a Mac --- PySimpleGUI.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index b04d6784..ff891ecd 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -21574,7 +21574,10 @@ if tclversion_detailed.startswith('8.5'): warnings.warn('You are running a VERY old version of tkinter {}'.format(tclversion_detailed), UserWarning) _read_mac_global_settings() - +if running_mac(): + print('Your Mac patches are:') + print('Modal windows disabled:', ENABLE_MAC_MODAL_DISABLE_PATCH) + print('No titlebar patch:', ENABLE_MAC_NOTITLEBAR_PATCH) # -------------------------------- ENTRY POINT IF RUN STANDALONE -------------------------------- # if __name__ == '__main__': # To execute the upgrade from command line, type: