X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffer.cpp;h=de3bfcf6d7bbb686a4a5ee672936a65395232575;hp=0cb9face2e35faf796b8c2b3cb21fedf296df4ed;hb=df0846fca1b6a8427498a125b32f4da6d236a7fc;hpb=92789e6323ca73383a7954d834ecfc093234f5e2 diff --git a/src/client/buffer.cpp b/src/client/buffer.cpp index 0cb9face..de3bfcf6 100644 --- a/src/client/buffer.cpp +++ b/src/client/buffer.cpp @@ -65,7 +65,7 @@ void Buffer::prependMsg(const Message &msg) { bool Buffer::layoutMsg() { if(layoutQueue.isEmpty()) return false; - + AbstractUiMsg *m = Client::layoutMsg(layoutQueue.takeFirst()); layoutedMsgs.prepend(m); emit msgPrepended(m); @@ -114,7 +114,7 @@ void Buffer::updateActivityLevel(const Message &msg) { ActivityLevel level = activityLevel() | OtherActivity; if(msg.type() & (Message::Plain | Message::Notice | Message::Action)) level |= NewMessage; - + if(msg.flags() & Message::Highlight) level |= Highlight;