diff options
author | Arno <arno@disconnect.de> | 2018-02-17 19:29:41 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-02-17 19:29:41 +0100 |
commit | 280c75090cb518f0f1a4e2b470a7722f95b9c9ab (patch) | |
tree | 466cb4a6ea3dedb02a944fa9378fa5fa0355a206 /BeetPlayer.pro | |
parent | b49d5333119239cf32f873d25a3d46d788f9747e (diff) | |
download | BeetPlayer-280c75090cb518f0f1a4e2b470a7722f95b9c9ab.tar.gz BeetPlayer-280c75090cb518f0f1a4e2b470a7722f95b9c9ab.tar.bz2 BeetPlayer-280c75090cb518f0f1a4e2b470a7722f95b9c9ab.zip |
Make filtering useful
Add a custom QSortFilterProxyModel which filterAcceptsRow() returns true
if the uppermost parent matches the filter RegExp.
Diffstat (limited to 'BeetPlayer.pro')
-rw-r--r-- | BeetPlayer.pro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/BeetPlayer.pro b/BeetPlayer.pro index 66d9073..37d9542 100644 --- a/BeetPlayer.pro +++ b/BeetPlayer.pro @@ -41,7 +41,8 @@ SOURCES += main.cpp\ collectiondatesview.cpp \ collectionfavoritesview.cpp \ collectionwebradioview.cpp \ - collectionfoldersview.cpp + collectionfoldersview.cpp \ + collectionwidgetproxy.cpp HEADERS += beetplayer.h \ configurationdialog.h \ @@ -59,7 +60,8 @@ HEADERS += beetplayer.h \ collectiondatesview.h \ collectionfavoritesview.h \ collectionwebradioview.h \ - collectionfoldersview.h + collectionfoldersview.h \ + collectionwidgetproxy.h LIBS += -ltag |