mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
415 B
C++
19 lines
415 B
C++
#include "notebookpagedroppreview.h"
|
|
#include "QPainter"
|
|
#include "colorscheme.h"
|
|
|
|
NotebookPageDropPreview::NotebookPageDropPreview(QWidget *parent = 0)
|
|
: QWidget(parent)
|
|
{
|
|
setHidden(true);
|
|
}
|
|
|
|
void
|
|
NotebookPageDropPreview::paintEvent(QPaintEvent *)
|
|
{
|
|
QPainter painter(this);
|
|
|
|
painter.fillRect(8, 8, width() - 17, height() - 17,
|
|
ColorScheme::instance().DropPreviewBackground);
|
|
}
|