diff --git a/TODO b/TODO index fea02c0b4..3089f43af 100644 --- a/TODO +++ b/TODO @@ -3,7 +3,6 @@ appropriate function will be called to 'apply' those changes. This type of system may need to be added to the gtkui as well. * Status icons for the torrentview -* Icons for the gtkui windows * Have the ui better handle not being able to connect to the daemon. * Mainwindow state saving.. Size, location, vpane position, etc.. * System tray icon diff --git a/deluge/ui/gtkui/addtorrentdialog.py b/deluge/ui/gtkui/addtorrentdialog.py index 33966631c..8d48a69e8 100644 --- a/deluge/ui/gtkui/addtorrentdialog.py +++ b/deluge/ui/gtkui/addtorrentdialog.py @@ -38,6 +38,7 @@ import gettext from deluge.config import Config from deluge.log import LOG as log +import deluge.common class AddTorrentDialog: def __init__(self, parent=None): @@ -48,6 +49,7 @@ class AddTorrentDialog: buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OPEN, gtk.RESPONSE_OK)) + self.chooser.set_icon(deluge.common.get_logo(32)) self.chooser.set_select_multiple(True) self.chooser.set_property("skip-taskbar-hint", True)