mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
12 lines
254 B
C++
12 lines
254 B
C++
|
#include "widget.h"
|
||
|
|
||
|
Widget::Widget(QWidget *parent)
|
||
|
: QWidget(parent)
|
||
|
{
|
||
|
// Set a black background for funsies
|
||
|
QPalette Pal(palette());
|
||
|
Pal.setColor(QPalette::Background, Qt::blue);
|
||
|
setAutoFillBackground(true);
|
||
|
setPalette(Pal);
|
||
|
}
|