From 96fd3de6e5cc3303468de6878d6d4a3846b92424 Mon Sep 17 00:00:00 2001 From: Soren Bjornstad Date: Tue, 25 Dec 2012 17:40:02 -0600 Subject: [PATCH] Apply same fix to "leech" as "marked". "Leech" does not need to be displayed in the taglist as a tag, as it is already listed as a special item further up the list. --- aqt/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/browser.py b/aqt/browser.py index 522e408a9..61899f7ac 100644 --- a/aqt/browser.py +++ b/aqt/browser.py @@ -755,7 +755,7 @@ by clicking on one on the left.""")) def _userTagTree(self, root): for t in sorted(self.col.tags.all()): - if t.lower() == "marked": + if t.lower() == "marked" or t.lower() == "leech": continue item = self.CallbackItem( t, lambda t=t: self.setFilter("tag", t))