Fix showing the 'Other' speed dialogs in Windows

This commit is contained in:
Andrew Resch 2009-11-03 03:19:30 +00:00
parent 464e11abe6
commit 48e3df5ff3
2 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,7 @@
=== Deluge 1.2.0_rc4 (In Development) ===
==== GtkUI ====
* Fix showing the 'Other' speed dialogs in Windows
==== Web ====
* Fix installing the deluge-web manpage
* Escape hyphens in the manpage

View file

@ -159,6 +159,9 @@ def show_other_dialog(header, type_str, image_stockid=None, image_filename=None,
if image_stockid:
glade.get_widget("image").set_from_stock(image_stockid, gtk.ICON_SIZE_LARGE_TOOLBAR)
if image_filename:
# Hack for Windows since it doesn't support svg
if os.path.splitext(image_filename)[1] == ".svg" and deluge.common.windows_check():
image_filename = os.path.splitext(image_filename)[0] + "16.png"
pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(
deluge.common.get_pixmap(image_filename), 32, 32)
glade.get_widget("image").set_from_pixbuf(pixbuf)