This commit is contained in:
Fabio Bas 2016-04-03 18:33:10 +02:00
parent f217551f5f
commit 2a3701b036
4 changed files with 10 additions and 4 deletions

View file

@ -236,3 +236,9 @@ bool TokenDisplayModel::filterAcceptsRow(int sourceRow, const QModelIndex & /*so
return info->getIsToken();
}
int TokenDisplayModel::rowCount(const QModelIndex &parent) const
{
// always load all tokens at start
return QSortFilterProxyModel::rowCount(parent);
}