mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-28 20:25:10 +00:00
GTKUI: Fix Show Zero Hits to only apply to state, owner and tracker_host
There is an issue with the Label plugin where a new label would 'disappear' and you could not change the options for the new label with zero hits hidden.
This commit is contained in:
parent
f8fbda97cd
commit
85f9247fd7
@ -223,8 +223,9 @@ class FilterManager(component.Component):
|
||||
items["tracker_host"]["Error"] = len(tracker_error_filter(torrent_ids, ("Error",)))
|
||||
|
||||
if not show_zero_hits:
|
||||
for cat in tree_keys:
|
||||
self._hide_state_items(items[cat])
|
||||
for cat in ["state", "owner", "tracker_host"]:
|
||||
if cat in tree_keys:
|
||||
self._hide_state_items(items[cat])
|
||||
|
||||
# Return a dict of tuples:
|
||||
sorted_items = {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user