finish off window icons for now

This commit is contained in:
Marcos Pinto 2007-09-16 07:40:44 +00:00
commit e6341e35d9
2 changed files with 2 additions and 1 deletions

1
TODO
View file

@ -3,7 +3,6 @@
appropriate function will be called to 'apply' those changes. This type of appropriate function will be called to 'apply' those changes. This type of
system may need to be added to the gtkui as well. system may need to be added to the gtkui as well.
* Status icons for the torrentview * Status icons for the torrentview
* Icons for the gtkui windows
* Have the ui better handle not being able to connect to the daemon. * Have the ui better handle not being able to connect to the daemon.
* Mainwindow state saving.. Size, location, vpane position, etc.. * Mainwindow state saving.. Size, location, vpane position, etc..
* System tray icon * System tray icon

View file

@ -38,6 +38,7 @@ import gettext
from deluge.config import Config from deluge.config import Config
from deluge.log import LOG as log from deluge.log import LOG as log
import deluge.common
class AddTorrentDialog: class AddTorrentDialog:
def __init__(self, parent=None): def __init__(self, parent=None):
@ -48,6 +49,7 @@ class AddTorrentDialog:
buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OPEN, buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OPEN,
gtk.RESPONSE_OK)) gtk.RESPONSE_OK))
self.chooser.set_icon(deluge.common.get_logo(32))
self.chooser.set_select_multiple(True) self.chooser.set_select_multiple(True)
self.chooser.set_property("skip-taskbar-hint", True) self.chooser.set_property("skip-taskbar-hint", True)