Module: deluge
Branch: 1.3-stable
Commit: 6b228ce31fe8cf3e1f4d9ddfc5aaadd6dfc1bece

Author: John Garland <[email protected]>
Date:   Sat Oct  2 23:55:51 2010 +1000

Fix sidebar not updating (#1365)

---

 ChangeLog                    |    4 ++++
 deluge/core/filtermanager.py |    3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index be05be0..5e223ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+=== Deluge 1.3.1 (In Development) ===
+==== GtkUI ====
+       * #1365: Fix sidebar not updating show/hide trackers
+
 === Deluge 1.3.0 (18 September 2010) ===
 ==== Core ====
        * Fix issue where the save_timer is cancelled when it's not active
diff --git a/deluge/core/filtermanager.py b/deluge/core/filtermanager.py
index 1538dfd..d3ad27c 100644
--- a/deluge/core/filtermanager.py
+++ b/deluge/core/filtermanager.py
@@ -196,9 +196,8 @@ class FilterManager(component.Component):
                 value = status[field]
                 items[field][value] = items[field].get(value, 0) + 1
 
-        items["tracker_host"]["All"] = len(torrent_ids)
-
         if "tracker_host" in items:
+            items["tracker_host"]["All"] = len(torrent_ids)
             items["tracker_host"]["Error"] = 
len(tracker_error_filter(torrent_ids, ("Error",)))
 
         if "state" in tree_keys and not show_zero_hits:

-- 
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.

Reply via email to