pyinstaller: Set NSHighResolutionCapable = True

This means qutebrowser will show up correctly on HiDPI/Retina screens
without being pixelated.
This commit is contained in:
Florian Bruhin 2016-05-28 23:20:00 +02:00
parent 90fa2a50ce
commit b065d8efcd

View File

@ -70,4 +70,5 @@ coll = COLLECT(exe,
app = BUNDLE(coll,
name='qutebrowser.app',
icon=icon,
info_plist={'NSHighResolutionCapable': 'True'},
bundle_identifier=None)