Module: deluge Branch: master Commit: a6d10562f1c227fce052856ed7b5f8a7f94d5117
Author: John Garland <[email protected]> Date: Tue May 4 03:05:51 2010 +1000 Don't request a tracker icon for labels or tracker states --- deluge/ui/gtkui/filtertreeview.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/ui/gtkui/filtertreeview.py b/deluge/ui/gtkui/filtertreeview.py index 598ce9c..c63a505 100644 --- a/deluge/ui/gtkui/filtertreeview.py +++ b/deluge/ui/gtkui/filtertreeview.py @@ -210,7 +210,7 @@ class FilterTreeView(component.Component): row = self.treestore.append(self.cat_nodes[cat],[cat, value, label, count , pix, True]) self.filters[(cat, value)] = row - if cat == "tracker_host" or cat == "label": + if cat == "tracker_host" and value not in ("All", "Error"): d = self.tracker_icons.get(value) d.addCallback(on_get_icon) -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
