mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +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
|
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
|
||||||
|
|
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue