diff --git a/deluge/ui/web/js/Deluge.Sidebar.js b/deluge/ui/web/js/Deluge.Sidebar.js index 5ac43beac..c1caf24ca 100644 --- a/deluge/ui/web/js/Deluge.Sidebar.js +++ b/deluge/ui/web/js/Deluge.Sidebar.js @@ -195,7 +195,7 @@ Copyright: removeZero: function(states) { var newStates = []; Ext.each(states, function(state) { - if (state[1] > 0) { + if (state[1] > 0 || state[0] == _('All')) { newStates.push(state); } });