added basic channel and fixed moving splits

This commit is contained in:
fourtf
2017-01-01 13:07:36 +01:00
parent 8b8b9706b3
commit a290f88685
8 changed files with 129 additions and 42 deletions
+2 -2
View File
@@ -5,12 +5,12 @@
NotebookPageDropPreview::NotebookPageDropPreview(QWidget *parent = 0)
: QWidget(parent)
{
setHidden(true);
}
void NotebookPageDropPreview::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.fillRect(rect(), ColorScheme::getInstance().DropPreviewBackground);
painter.fillRect(8, 8, width()-17, height()-17, ColorScheme::getInstance().DropPreviewBackground);
}