Merge pull request #6708 from spycrab/qt_dynfilter

Qt/GameList: Ensure resort when new entries are added
This commit is contained in:
Mat M 2018-04-28 13:39:56 -04:00 committed by GitHub
commit fa44e28ce0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@
ListProxyModel::ListProxyModel(QObject* parent) : QSortFilterProxyModel(parent)
{
setDynamicSortFilter(true);
}
bool ListProxyModel::filterAcceptsRow(int source_row, const QModelIndex& source_parent) const