uistyle: Support extended mIRC colors
[quassel.git] / src / qtui / chatline.cpp
index 0c66622..649b761 100644 (file)
@@ -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<UiStyle::MessageLabel>();
 
-    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());