mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
change last message indicator pattern to solid line
This commit is contained in:
parent
b978977e7a
commit
5c7af334ca
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue