add "(filtered)" to the Albums title while a filter is active

pull/655/head
Jason Priebe 8 years ago
parent 9321aecf17
commit 8ea4f68437

@ -15,7 +15,14 @@ view.albums = {
title: function() {
lychee.setTitle('Albums', false)
if (filter.isFilterActive())
{
lychee.setTitle('Albums (filtered)', false)
}
else
{
lychee.setTitle('Albums', false)
}
},

Loading…
Cancel
Save