Support Windows Debug Builds

This commit is contained in:
ZeldaZach 2024-12-13 00:43:09 -05:00
parent a39de270cd
commit 549c352b20
No known key found for this signature in database
3 changed files with 8 additions and 6 deletions

View file

@ -176,7 +176,7 @@ void CardDatabaseDisplayModel::fetchMore(const QModelIndex &index)
int CardDatabaseDisplayModel::rowCount(const QModelIndex &parent) const
{
return qMin(QSortFilterProxyModel::rowCount(parent), loadedRowCount);
return QSortFilterProxyModel::rowCount(parent);
}
bool CardDatabaseDisplayModel::lessThan(const QModelIndex &left, const QModelIndex &right) const