mirror-chatterino2/chatwidgetinput.cpp
2017-01-18 04:52:47 +01:00

20 lines
412 B
C++

#include "chatwidgetinput.h"
#include "colorscheme.h"
#include <QPainter>
ChatWidgetInput::ChatWidgetInput()
{
setFixedHeight(38);
}
void
ChatWidgetInput::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.fillRect(rect(), ColorScheme::instance().ChatInputBackground);
painter.setPen(ColorScheme::instance().ChatInputBorder);
painter.drawRect(0, 0, width() - 1, height() - 1);
}