X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fuistyle.cpp;h=f55b183108dfaace23d74388a3d99e7701967832;hb=2f3e8eee76e73ba48581509a9fd95b87f45ded48;hp=cba2edaf5047befac3181e5247fcf53ab5e78eab;hpb=b82e9603ab7ce1164e8f550132f0c649653ad8ab;p=quassel.git diff --git a/src/uisupport/uistyle.cpp b/src/uisupport/uistyle.cpp index cba2edaf..f55b1831 100644 --- a/src/uisupport/uistyle.cpp +++ b/src/uisupport/uistyle.cpp @@ -667,10 +667,11 @@ QString UiStyle::mircToInternal(const QString &mirc_) UiStyle::StyledMessage::StyledMessage(const Message &msg) : Message(msg) { - if (type() == Message::Plain) + if (type() == Message::Plain || type() == Message::Action) _senderHash = 0xff; else - _senderHash = 0x00; // this means we never compute the hash for msgs that aren't plain + _senderHash = 0x00; + // This means we never compute the hash for msgs that aren't Plain or Action }