mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 01:58:41 -05:00
add an icon!
This commit is contained in:
parent
d23e6a4b68
commit
26a421815b
3 changed files with 4 additions and 2 deletions
5
todo
5
todo
|
|
@ -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
BIN
trimage-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.8 KiB |
1
ui.py
1
ui.py
|
|
@ -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")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue