Case insensitive sort for client clumn. Closes #6054

This commit is contained in:
Oke Atime
2016-12-15 15:25:30 +09:00
committed by sledgehammer999
parent 4cf549ff25
commit cb2d39f2a7

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