PyInstaller Tkinter window low resolution in App bundle, but not in app program PyInstaller Tkinter window low resolution in App bundle, but not in app program tkinter tkinter

PyInstaller Tkinter window low resolution in App bundle, but not in app program


Eventually I found the answer by...carefully reading the docs ;) There's this one line which solve my problem:

For example, when you use PyQt5, you can set NSHighResolutionCapable to True to let your app also work in retina screen

In case someone else is seeing this problem on MacOs here's the answer:

My spec file was missing the High Resolution setting specified by the info_plist parameter. Here's an example:

app = BUNDLE(exe,     name='myscript.app',     icon=None,     bundle_identifier=None     info_plist={        'NSHighResolutionCapable': 'True'        },     )

Hope it will help someone else too!!! :)