Skip to content

Commit

Permalink
Final 4.60.3 released to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
PySimpleGUI committed Jul 27, 2022
1 parent 63f73c2 commit b037e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PySimpleGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -22323,7 +22323,7 @@ def _mac_should_set_alpha_to_99():
# Final check is to see if Mac OS version is 12.3 or later
try:
platform_mac_ver = platform.mac_ver()[0]
mac_ver = platform_mac_ver.split('.')
mac_ver = platform_mac_ver.split('.') if '.' in platform_mac_ver else (platform_mac_ver, 0)
if (int(mac_ver[0]) >= 12 and int(mac_ver[1]) >= 3) or int(mac_ver[0]) >= 13 :
print("Mac OS Version is {} and patch enabled so applying the patch".format(platform_mac_ver))
return True
Expand Down

0 comments on commit b037e14

Please sign in to comment.