convert the other icons that i could see to the icon theme

This commit is contained in:
Damien Churchill 2009-07-30 23:46:03 +00:00
parent 91c5028701
commit b8b292c7fb
2 changed files with 15 additions and 2 deletions

View File

@ -73,7 +73,16 @@ should have received a copy of the GNU General Public License along with this pr
if not, see <http://www.gnu.org/licenses>."))
self.about.set_website("http://deluge-torrent.org")
self.about.set_website_label("http://deluge-torrent.org")
self.about.set_icon(common.get_logo(32))
if deluge.common.windows_check():
self.about.set_icon(common.get_logo(32))
else:
try:
icon_theme = gtk.icon_theme_get_default()
self.about.set_icon(icon_theme.load_icon("deluge", 32, 0))
except:
self.about.set_icon(common.get_logo(32))
self.about.set_logo(gtk.gdk.pixbuf_new_from_file(
deluge.common.get_pixmap("deluge-about.png")))

View File

@ -324,7 +324,11 @@ class MenuBar(component.Component):
gtk.RESPONSE_CANCEL, gtk.STOCK_OK, gtk.RESPONSE_OK))
chooser.set_local_only(True)
if not deluge.common.windows_check():
chooser.set_icon(common.get_logo(18))
try:
icon_theme = gtk.icon_theme_get_default()
chooser.set_icon(icon_theme.load_icon("deluge", 32, 0))
except:
chooser.set_icon(common.get_logo(32))
chooser.set_property("skip-taskbar-hint", True)
chooser.set_current_folder(config["choose_directory_dialog_path"])
if chooser.run() == gtk.RESPONSE_OK: