X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fqtuimessageprocessor.cpp;h=94f43e3ed90c365db7ebf49bfea4448ab9d637a6;hb=092e6b212637ffbf68800584b7c1f32d1931b602;hp=de35336a5c1a583721ff5488100e99a53d862e51;hpb=16f22647e6890d3eb8c3e94f7a0700e12fa29e44;p=quassel.git diff --git a/src/qtui/qtuimessageprocessor.cpp b/src/qtui/qtuimessageprocessor.cpp index de35336a..94f43e3e 100644 --- a/src/qtui/qtuimessageprocessor.cpp +++ b/src/qtui/qtuimessageprocessor.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -57,8 +57,7 @@ void QtUiMessageProcessor::reset() void QtUiMessageProcessor::process(Message &msg) { - if (!Client::coreFeatures().testFlag(Quassel::Feature::CoreSideHighlights)) - checkForHighlight(msg); + checkForHighlight(msg); preProcess(msg); Client::messageModel()->insertMessage(msg); } @@ -69,8 +68,7 @@ void QtUiMessageProcessor::process(QList &msgs) QList::iterator msgIter = msgs.begin(); QList::iterator msgIterEnd = msgs.end(); while (msgIter != msgIterEnd) { - if (!Client::coreFeatures().testFlag(Quassel::Feature::CoreSideHighlights)) - checkForHighlight(*msgIter); + checkForHighlight(*msgIter); preProcess(*msgIter); ++msgIter; }