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:
parent
d3faa78e75
commit
97e981d900
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue