1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

Sort torrent names case insensitively

This commit is contained in:
Yez Ezey 2016-10-24 19:50:30 +09:00
parent 07f141af2e
commit 81ec2e60a9

View File

@ -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: