From: Manuel Nickschas Date: Thu, 6 Aug 2009 16:57:31 +0000 (+0200) Subject: Use state="channel-event" rather than "event" to make things more obvious X-Git-Tag: 0.5-rc1~84 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=f4c3a241df84e2a2de9ddebdc4c7f25054b4ba9c Use state="channel-event" rather than "event" to make things more obvious --- diff --git a/src/uisupport/qssparser.cpp b/src/uisupport/qssparser.cpp index d5b9984f..ccb22041 100644 --- a/src/uisupport/qssparser.cpp +++ b/src/uisupport/qssparser.cpp @@ -344,7 +344,7 @@ quint32 QssParser::parseItemFormatType(const QString &decl) { if(!state.isEmpty()) { if(state == "inactive") fmtType |= UiStyle::InactiveBuffer; - else if(state == "event") + else if(state == "channel-event") fmtType |= UiStyle::ActiveBuffer; else if(state == "unread-message") fmtType |= UiStyle::UnreadBuffer;