X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatline.cpp;fp=src%2Fqtui%2Fchatline.cpp;h=649b7618068cbb74d3fa351c3048eae12638504e;hp=0c666220604219befa7e8c48fefa414ad482e9fb;hb=e6f810169117c836c22ae1146e469e61dec95f6f;hpb=ac7a58dd970833da2336f6ce035ec55515bac0f1 diff --git a/src/qtui/chatline.cpp b/src/qtui/chatline.cpp index 0c666220..649b7618 100644 --- a/src/qtui/chatline.cpp +++ b/src/qtui/chatline.cpp @@ -217,13 +217,13 @@ void ChatLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, Message::Type type = (Message::Type)myIdx.data(MessageModel::TypeRole).toInt(); UiStyle::MessageLabel label = myIdx.data(ChatLineModel::MsgLabelRole).value(); - QTextCharFormat msgFmt = QtUi::style()->format(UiStyle::formatType(type), label); + QTextCharFormat msgFmt = QtUi::style()->format({UiStyle::formatType(type), {}, {}}, label); if (msgFmt.hasProperty(QTextFormat::BackgroundBrush)) { painter->fillRect(boundingRect(), msgFmt.background()); } if (_selection & Selected) { - QTextCharFormat selFmt = QtUi::style()->format(UiStyle::formatType(type), label | UiStyle::MessageLabel::Selected); + QTextCharFormat selFmt = QtUi::style()->format({UiStyle::formatType(type), {}, {}}, label | UiStyle::MessageLabel::Selected); if (selFmt.hasProperty(QTextFormat::BackgroundBrush)) { qreal left = item((ChatLineModel::ColumnType)(_selection & ItemMask))->pos().x(); QRectF selectRect(left, 0, width() - left, height());