add an icon!

This commit is contained in:
Kilian Valkhof 2010-02-03 12:57:46 +01:00
parent d23e6a4b68
commit 26a421815b
3 changed files with 4 additions and 2 deletions

5
todo
View file

@ -26,8 +26,9 @@ todo app wise
- implement drag and drop on table - implement drag and drop on table
- implement threading (and include advpng then) - implement threading (and include advpng then)
- errors need to go to standarderror - errors need to go to standarderror
- test with filenames in spaces (probably works already) - implement a case insensitive file dialog open
- test differnt file name cases ^ we can do this, but this is only needed for linux. for now lets just add uppercase equivalents
- make icon
todo else todo else
- figure out dependencies for a .deb/how to make a .deb - figure out dependencies for a .deb/how to make a .deb

BIN
trimage-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

1
ui.py
View file

@ -38,6 +38,7 @@ class Ui_trimage(object):
def setupUi(self, trimage): def setupUi(self, trimage):
trimage.setObjectName("trimage") trimage.setObjectName("trimage")
trimage.resize(600, 170) trimage.resize(600, 170)
trimage.setWindowIcon(QtGui.QIcon("trimage-icon.png"))
self.centralwidget = QtGui.QWidget(trimage) self.centralwidget = QtGui.QWidget(trimage)
self.centralwidget.setObjectName("centralwidget") self.centralwidget.setObjectName("centralwidget")