X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fuistyle.cpp;h=3584afcf0191990800d0c1c92afd7c345da4ae5b;hp=f6ce8a66a55d8196f95afa5e229c8a2bc4fd0f1d;hb=ebe8328821ff05692eb8f420cd0e54083d8b0927;hpb=2d63a234566618c61722639ab71a9684e1ce48e6 diff --git a/src/uisupport/uistyle.cpp b/src/uisupport/uistyle.cpp index f6ce8a66..3584afcf 100644 --- a/src/uisupport/uistyle.cpp +++ b/src/uisupport/uistyle.cpp @@ -410,14 +410,23 @@ QString UiStyle::StyledMessage::decoratedSender() const { } UiStyle::FormatType UiStyle::StyledMessage::senderFormat() const { - quint16 hash; switch(type()) { case Message::Plain: // To produce random like but stable nick colorings some sort of hashing should work best. // In this case we just use the qt function qChecksum which produces a // CRC16 hash. This should be fast and 16 bits are more than enough. - hash = qChecksum(sender().toAscii().data(), sender().toAscii().size()); - return (UiStyle::FormatType)((((hash % 12) + 1) << 24) + 0x200); // FIXME: amount of sender colors hardwired + { + QString nick = nickFromMask(sender()).toLower(); + if(!nick.isEmpty()) { + int chopCount = 0; + while(nick[nick.count() - 1 - chopCount] == '_') { + chopCount++; + } + nick.chop(chopCount); + } + quint16 hash = qChecksum(nick.toAscii().data(), nick.toAscii().size()); + return (UiStyle::FormatType)((((hash % 12) + 1) << 24) + 0x200); // FIXME: amount of sender colors hardwired + } case Message::Notice: return UiStyle::NoticeMsg; break; case Message::Server: