mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Force 16x16 pixbufs in tracker column
This commit is contained in:
parent
7bdf8bffd8
commit
b605048d23
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue