mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 19:40:18 -07:00
Case insensitive sort for client clumn. Closes #6054
This commit is contained in:
parent
4cf549ff25
commit
cb2d39f2a7
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ protected:
|
|||
case PeerListDelegate::CLIENT: {
|
||||
QString vL = left.data().toString();
|
||||
QString vR = right.data().toString();
|
||||
return Utils::String::naturalCompareCaseSensitive(vL, vR);
|
||||
return Utils::String::naturalCompareCaseInsensitive(vL, vR);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue