implemented hold keyframe and began new panel
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#include "graphview.h"
|
||||
|
||||
#include <QPainter>
|
||||
|
||||
GraphView::GraphView(QWidget* parent) {}
|
||||
|
||||
void GraphView::paintEvent(QPaintEvent *event) {
|
||||
QPainter p(this);
|
||||
|
||||
p.setPen(Qt::white);
|
||||
|
||||
p.drawRect(rect());
|
||||
}
|
||||
Reference in New Issue
Block a user