macos: Don't build app bundle with console enabled

Enabling console in pyinstaller will prevent the app from showing
its own menubar when in the foreground and also prevents it from
appearing in the dock.

If you've got other applications/windows open, this can make it
appear hidden in the background & more difficult to make active.
This commit is contained in:
Max Fierke 2024-12-13 22:34:01 -06:00
parent c7f1688551
commit 7e09bb913e
No known key found for this signature in database

View File

@ -23,7 +23,7 @@ exe = EXE(
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
console=False,
icon=['FlashGBX/res/icon.ico'],
)
coll = COLLECT(