From 5c7af334caeb4df6e5cb1f39242be4030493c97c Mon Sep 17 00:00:00 2001 From: hemirt Date: Mon, 26 Mar 2018 21:13:51 +0200 Subject: [PATCH] change last message indicator pattern to solid line --- src/messages/layouts/messagelayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/messages/layouts/messagelayout.cpp b/src/messages/layouts/messagelayout.cpp index 658f6ad7c..2ce1a5247 100644 --- a/src/messages/layouts/messagelayout.cpp +++ b/src/messages/layouts/messagelayout.cpp @@ -176,7 +176,7 @@ void MessageLayout::paint(QPainter &painter, int y, int messageIndex, Selection QColor color = isWindowFocused ? themeManager.tabs.selected.backgrounds.regular.color() : themeManager.tabs.selected.backgrounds.unfocused.color(); - QBrush brush(color, Qt::VerPattern); + QBrush brush = QBrush(color, Qt::SolidPattern); painter.fillRect(0, y + this->container.getHeight() - 1, this->container.getWidth(), 1, brush);