Case insensitive sort for client clumn. Closes #6054

This commit is contained in:
Oke Atime 2016-12-15 15:25:30 +09:00
parent 4f59caf3ca
commit 84da355f4c

View file

@ -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);
}
};