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

Fix py2 compatibility: wm_iconphoto does not exist in python2.7

This commit is contained in:
Juhani Numminen 2020-03-01 11:42:43 +02:00
parent e5e60d3232
commit 0d98da15e6

View file

@ -94,7 +94,10 @@ def base_init_root_window(root, app):
if TOOLKIT == 'tk':
icons = [loadImage(img) for img in app.dataloader.findAllIconSizes()]
if icons:
root.wm_iconphoto(True, *icons)
try:
root.wm_iconphoto(True, *icons)
except AttributeError:
root.tk.call('wm', 'iconphoto', root, '-default', *icons)
# set minsize
sw, sh = (root.winfo_screenwidth(), root.winfo_screenheight())