Fix the main menu look on macOS

This commit is contained in:
Veronica K. B. Olsen
2020-10-07 15:51:12 +02:00
parent 68d84ae2c8
commit 357a407116
2 changed files with 14 additions and 0 deletions
+10
View File
@@ -241,6 +241,16 @@ def main(sysArgs=None):
# Finish initialising config
CONFIG.initConfig(confPath, dataPath)
if CONFIG.osDarwin:
try:
from Foundation import NSBundle
bundle = NSBundle.mainBundle()
info = bundle.localizedInfoDictionary() or bundle.infoDictionary()
info["CFBundleName"] = "novelWriter"
except ImportError as e:
logger.error("Failed to set application name")
logger.error(str(e))
# Import GUI (after dependency checks), and launch
from nw.guimain import GuiMain
if testMode: