Package: deluge-torrent Version: 0.5.4.1-1 Severity: minor Tags: patch -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Deluge's main window uses the current icon theme, but the image for the tray icon is hardcoded. The generic "deluge-torrent" icon should be used instead. The attached patch fixes this. - -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.22-1-k7 (SMP w/1 CPU core) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to de_DE.UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages deluge-torrent depends on: ii libboost-date-ti 1.34.0-1+b1 set of date-time libraries based o ii libboost-filesys 1.34.0-1+b1 filesystem operations (portable pa ii libboost-thread1 1.34.0-1+b1 portable C++ multi-threading ii libc6 2.6.1-1 GNU C Library: Shared libraries ii libgcc1 1:4.2.1-4 GCC support library ii libssl0.9.8 0.9.8e-6 SSL shared libraries ii libstdc++6 4.2.1-4 The GNU Standard C++ Library v3 ii notification-dae 0.3.7-1.1~noclosebutton a daemon that displays passive pop ii python 2.4.4-6 An interactive high-level object-o ii python-glade2 2.10.6-1 GTK+ bindings: Glade support ii python-gtk2 2.10.6-1 Python bindings for the GTK+ widge ii python-notify 0.1.1-1 Python bindings for libnotify ii python-support 0.6.4 automated rebuilding support for p ii python-xdg 0.15-1.1 A python library to access freedes ii zlib1g 1:1.2.3.3.dfsg-5 compression library - runtime deluge-torrent recommends no packages. - -- no debconf information -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGxN76YfUFJ3ewsJgRAldkAJ0XB0VBf0cwtiQ56lC3LIRCGnLdLACcDpzY 76Erjlf9STxlVsY5gD694pY= =SaRh -----END PGP SIGNATURE-----
--- interface.py.old 2007-08-17 01:30:48.000000000 +0200 +++ interface.py 2007-08-17 01:31:06.000000000 +0200 @@ -203,7 +203,7 @@ self.manager.resume_all() def build_tray_icon(self): - self.tray_icon = gtk.status_icon_new_from_file(common.get_pixmap("deluge32.png")) + self.tray_icon = gtk.status_icon_new_from_icon_name('deluge-torrent')) self.tray_glade = gtk.glade.XML(common.get_glade_file("tray_menu.glade"), domain='deluge') self.tray_menu = self.tray_glade.get_widget("tray_menu")