I'm working on an applcation in Python's PyQt4 and cannot find how to change the taskbar icon. I made my .ui files in Qt's Designer, where I can change the windowIcon
properties. But that is not what I am looking for. I want to change the look of the application's icon in windows taskbar. For now it is Python logo in a window icon.
I found some information on SO: link but it's not helping me much.
I tried:
app = QtGui.QApplication([])
app.setWindowIcon(QtGui.QIcon('chip_icon_normal.png'))
app.exec_()
But the icon remains unchanged.
What i want to change, showing the picture: (This is done calling the setWindowIcon on main window/ dialog, or the application, as shown above.)
windowIcon
, I'm not sure which icon you are looking for. A screenshot would help. – Wivinaexe
with its own icon (withpy2exe
orpyinstaller
), that also solves the issue. Just a heads up, if you were planning on doing this in the end. – Wivinaexe
package. This issue can be considered as a bug, probably solvable in thepythonw.exe
side. That answer explains it quite well actually. – Wivina