change last message indicator pattern to solid line

This commit is contained in:
hemirt 2018-03-26 21:13:51 +02:00
parent b978977e7a
commit 5c7af334ca

View file

@ -176,7 +176,7 @@ void MessageLayout::paint(QPainter &painter, int y, int messageIndex, Selection
QColor color = isWindowFocused ? themeManager.tabs.selected.backgrounds.regular.color() QColor color = isWindowFocused ? themeManager.tabs.selected.backgrounds.regular.color()
: themeManager.tabs.selected.backgrounds.unfocused.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, painter.fillRect(0, y + this->container.getHeight() - 1, this->container.getWidth(), 1,
brush); brush);