mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 20:14:51 +00:00
finish off window icons for now
This commit is contained in:
parent
379eff9767
commit
e6341e35d9
2 changed files with 2 additions and 1 deletions
1
TODO
1
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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue