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

This commit is contained in:
Jason Priebe 2016-11-28 02:40:38 +00:00
parent 9321aecf17
commit 8ea4f68437

View File

@ -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)
}
},