mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fixes #249
This commit is contained in:
parent
0f4ec70bf3
commit
f42d48860c
1 changed files with 2 additions and 1 deletions
|
@ -171,7 +171,8 @@ void MessageLayout::paint(QPainter &painter, int y, int messageIndex, Selection
|
|||
}
|
||||
|
||||
// draw on buffer
|
||||
painter.drawPixmap(0, y, this->container.width, this->container.getHeight(), *pixmap);
|
||||
painter.drawPixmap(0, y, *pixmap);
|
||||
// painter.drawPixmap(0, y, this->container.width, this->container.getHeight(), *pixmap);
|
||||
|
||||
// draw disabled
|
||||
if (this->message->hasFlags(Message::Disabled)) {
|
||||
|
|
Loading…
Reference in a new issue