I have a PySide app which has an icon for the MainWindow
(a QMainWindow
instance). When I run the file normally, the icon is visible and everything is fine but when I create an exe with py2exe
, the icon does not appear. This happens with cx_freeze
also( so I don't think the problem's with py2exe
).
The app was designed using QtDesigner
and converted to python with pyside-uic
. I tried both using icons as a file and as a resource(qrc file) and both don't seem to work.
Any help or pointers would be appreciated.
Thanks.