Closed jabreght closed 6 years ago
By default, on Windows - appJar uses it's own icon for all windows.
To stop it using the icon, you can set it to None: app.winIcon = None
straight after you create the gui object.
That should prevent subWindws from having an icon. But you might still have issues with the main window having an icon...
Let me know how you get on.
I'll also include an option in the next release to turn off icons when appJar is created.
I have the same problem. Tried to set app.winIcon = None
and by using pyinstaller set default icon to my file. When i use showIcon = False
my program did not start.
I'm having issues with packing my script into an exe with pyinstaller. If I do a simple script it packs fine. However if I move to a more advanced script with more multiple windows and such it has an issue with
Now i've tried getting around this by including the appJar folder into my exe location. This does get it to start, but only for a debug build with pyinstaller. If i package it into a self-contained exe it just doesn't run and gives a message of "failed to execute script". Not sure how to get it to stop using the icon for the subwindow.