mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
Sort torrent names case insensitively
This commit is contained in:
@@ -80,7 +80,7 @@ bool TransferListSortModel::lessThan(const QModelIndex &left, const QModelIndex
|
||||
if (!vL.isValid() || !vR.isValid() || (vL == vR))
|
||||
return lowerPositionThan(left, right);
|
||||
|
||||
return Utils::String::naturalCompareCaseSensitive(vL.toString(), vR.toString());
|
||||
return Utils::String::naturalCompareCaseInsensitive(vL.toString(), vR.toString());
|
||||
}
|
||||
|
||||
case TorrentModel::TR_ADD_DATE:
|
||||
|
||||
Reference in New Issue
Block a user