Skip to content

Commit

Permalink
qtui: Search in file names with Ctrl+F. Closes: #1204
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman authored and jlindgren90 committed Mar 4, 2023
1 parent 7951b5f commit 82ecc28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qtui/playlist_model.cc
Expand Up @@ -313,7 +313,8 @@ bool PlaylistProxyModel::filterAcceptsRow(int source_row,

String strings[] = {tuple.get_str(Tuple::Title),
tuple.get_str(Tuple::Artist),
tuple.get_str(Tuple::Album)};
tuple.get_str(Tuple::Album),
tuple.get_str(Tuple::Basename)};

for (auto & term : m_searchTerms)
{
Expand Down

0 comments on commit 82ecc28

Please sign in to comment.