Skip to content
Permalink
Browse files
Merge pull request #8958 from jordan-woyak/sort-fix
DolphinQt: Fix default sort direction of game list.
  • Loading branch information
lioncash committed Jul 17, 2020
2 parents 01178e4 + ecf016e commit a7e475e
Showing 1 changed file with 1 addition and 1 deletion.
@@ -19,7 +19,7 @@ bool ListProxyModel::filterAcceptsRow(int source_row, const QModelIndex& source_
bool ListProxyModel::lessThan(const QModelIndex& left, const QModelIndex& right) const
{
if (left.data(Qt::InitialSortOrderRole) != right.data(Qt::InitialSortOrderRole))
return QSortFilterProxyModel::lessThan(right, left);
return QSortFilterProxyModel::lessThan(left, right);

// If two items are otherwise equal, compare them by their title
const auto right_title =

0 comments on commit a7e475e

Please sign in to comment.