mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-23 07:50:13 +01:00
Also filter on artist name on Cover manager (instead of only album name)
This commit is contained in:
parent
256d46624c
commit
6ecc69d18b
@ -339,7 +339,8 @@ bool AlbumCoverManager::ShouldHide(
|
||||
|
||||
QStringList query = filter.split(' ');
|
||||
foreach (const QString& s, query) {
|
||||
if (!item.text().contains(s, Qt::CaseInsensitive)) {
|
||||
if (!item.text().contains(s, Qt::CaseInsensitive)
|
||||
&& !item.data(Role_ArtistName).toString().contains(s, Qt::CaseInsensitive)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user