1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Window icon: Sort by largest, otherwise macOS Dock presents ugly low-res icon

This commit is contained in:
Juhani Numminen 2020-10-20 13:41:47 +03:00
parent 7da41a93be
commit 372fcba9de

View file

@ -93,6 +93,7 @@ def base_init_root_window(root, app):
if TOOLKIT == 'tk':
icons = [loadImage(img) for img in app.dataloader.findAllIconSizes()]
icons.sort(reverse=True, key=lambda img: img.width())
if icons:
try:
root.wm_iconphoto(True, *icons)