mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
Case insensitive sort for client clumn. Closes #6054
This commit is contained in:
parent
4f59caf3ca
commit
84da355f4c
@ -48,7 +48,7 @@ protected:
|
|||||||
case PeerListDelegate::CLIENT: {
|
case PeerListDelegate::CLIENT: {
|
||||||
QString vL = left.data().toString();
|
QString vL = left.data().toString();
|
||||||
QString vR = right.data().toString();
|
QString vR = right.data().toString();
|
||||||
return Utils::String::naturalCompareCaseSensitive(vL, vR);
|
return Utils::String::naturalCompareCaseInsensitive(vL, vR);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user