X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fqssparser.cpp;h=ceac60baebbeccf04e254abdffee797d3910af9c;hb=02ed3d0a95051e55ecaf66561f379041ae111cca;hp=48a1a0645f3b5bef2e972d6f3d842484ad0414cf;hpb=1489728cd358f6bf7151bcdd87b9ea2cbdff7bec;p=quassel.git diff --git a/src/uisupport/qssparser.cpp b/src/uisupport/qssparser.cpp index 48a1a064..ceac60ba 100644 --- a/src/uisupport/qssparser.cpp +++ b/src/uisupport/qssparser.cpp @@ -226,6 +226,10 @@ quint64 QssParser::parseFormatType(const QString &decl) { fmtType |= UiStyle::DayChangeMsg; else if(msgType == "topic") fmtType |= UiStyle::TopicMsg; + else if(msgType == "netsplitJoin") + fmtType |= UiStyle::NetsplitJoinMsg; + else if(msgType == "netsplitQuit") + fmtType |= UiStyle::NetsplitQuitMsg; else { qWarning() << Q_FUNC_INFO << tr("Invalid message type in %1").arg(decl); }