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:
parent
7da41a93be
commit
372fcba9de
1 changed files with 1 additions and 0 deletions
|
@ -93,6 +93,7 @@ def base_init_root_window(root, app):
|
||||||
|
|
||||||
if TOOLKIT == 'tk':
|
if TOOLKIT == 'tk':
|
||||||
icons = [loadImage(img) for img in app.dataloader.findAllIconSizes()]
|
icons = [loadImage(img) for img in app.dataloader.findAllIconSizes()]
|
||||||
|
icons.sort(reverse=True, key=lambda img: img.width())
|
||||||
if icons:
|
if icons:
|
||||||
try:
|
try:
|
||||||
root.wm_iconphoto(True, *icons)
|
root.wm_iconphoto(True, *icons)
|
||||||
|
|
Loading…
Add table
Reference in a new issue