fix jrowes lazy sorting

This commit is contained in:
BreadFish64 2018-05-21 20:55:19 -05:00
parent 31a9fdb00b
commit 30c6c37d6c

View File

@ -161,8 +161,7 @@ QVariant ComboBoxProxyModel::data(const QModelIndex& idx, int role) const {
}
bool ComboBoxProxyModel::lessThan(const QModelIndex& left, const QModelIndex& right) const {
// TODO(jroweboy): Sort by game title not filename
auto leftData = left.data(Qt::DisplayRole).toString();
auto rightData = right.data(Qt::DisplayRole).toString();
auto leftData = left.data(GameListItemPath::TitleRole).toString();
auto rightData = right.data(GameListItemPath::TitleRole).toString();
return leftData.compare(rightData) < 0;
}