classic fourtf commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#include "notebookpagedroppreview.h"
|
||||
#include "QPainter"
|
||||
#include "colorscheme.h"
|
||||
|
||||
NotebookPageDropPreview::NotebookPageDropPreview(QWidget *parent = 0)
|
||||
: QWidget(parent)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void NotebookPageDropPreview::paintEvent(QPaintEvent *)
|
||||
{
|
||||
QPainter painter(this);
|
||||
|
||||
painter.fillRect(rect(), ColorScheme::getInstance().DropPreviewBackground);
|
||||
}
|
||||
Reference in New Issue
Block a user