Fix #247 - case insensitive sorting in feeds list.

This commit is contained in:
Martin Rotter 2020-06-19 07:28:08 +02:00
parent 94f50874a1
commit ac778109f5
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ bool FeedsProxyModel::lessThan(const QModelIndex& left, const QModelIndex& right
}
else {
// In other cases, sort by title.
return QString::localeAwareCompare(left_item->title(), right_item->title()) < 0;
return QString::localeAwareCompare(left_item->title().toLower(), right_item->title().toLower()) < 0;
}
}
else {