mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Merge pull request #6340 from Chocobo1/contentSort
Use case-insensitive comparsion for torrent content window
This commit is contained in:
commit
bcd6baa793
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ bool TorrentContentFilterModel::lessThan(const QModelIndex &left, const QModelIn
|
|||
TorrentContentModelItem::ItemType rightType = m_model->itemType(m_model->index(right.row(), 0, right.parent()));
|
||||
|
||||
if (leftType == rightType)
|
||||
return Utils::String::naturalCompareCaseSensitive(vL, vR);
|
||||
return Utils::String::naturalCompareCaseInsensitive(vL, vR);
|
||||
else if (leftType == TorrentContentModelItem::FolderType && sortOrder() == Qt::AscendingOrder)
|
||||
return true;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue