From b605048d23dca11f8cfc1e0eb50f2beb7e7d2a4e Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 20 Apr 2009 18:11:22 +0000 Subject: [PATCH] Force 16x16 pixbufs in tracker column --- deluge/ui/gtkui/torrentview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index 98bea604e..fed2f4141 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -78,7 +78,7 @@ def cell_data_trackericon(column, cell, model, row, data): icon_path = TrackerIcons().get(model[row][data]) if icon_path: try: - icon = gtk.gdk.pixbuf_new_from_file(icon_path) + icon = gtk.gdk.pixbuf_new_from_file_at_size(icon_path, 16, 16) except Exception, e: pass if cell.get_property("pixbuf") != icon: