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

macOS: ensure the application window is shown

py2app's "argv_emulation" feature prevents the Tkinter window from being shown
when PySolFC.app is launched.

This did not affect launching pysol.py using Terminal on macOS.

Solution found here: https://stackoverflow.com/questions/12992316/tkinter-py2app-created-application-doesnt-show-window-on-initial-launch
This commit is contained in:
Juhani Numminen 2020-10-12 21:25:19 +03:00
parent d3faa78e75
commit 97e981d900

View file

@ -56,7 +56,8 @@ DATA_FILES = ['docs', 'data', 'locale', 'scripts', 'COPYING', 'README.md',
] + SOLVER
RESOURCES = []
FRAMEWORKS = [SOLVER_LIB_PATH] if SOLVER_LIB_PATH else []
OPTIONS = dict(argv_emulation=True,
# with argv_emulation=True, the app window is not shown when launched
OPTIONS = dict(argv_emulation=False,
plist=PLIST,
iconfile=ICON_FILE,
resources=RESOURCES,