added minor clip functionality to timelineview

This commit is contained in:
itsmattkc
2019-08-02 11:33:45 +12:00
parent 1ac93b804c
commit c74e3571ff
5 changed files with 121 additions and 44 deletions
+1 -1
View File
@@ -222,7 +222,7 @@ void TimeRuler::paintEvent(QPaintEvent *e)
// If we found the playhead along here, draw it last
if (playhead_pos >= 0) {
p.setPen(Qt::NoPen);
p.setBrush(Qt::red);
p.setBrush(Qt::red); // FIXME: Make configurable in CSS
DrawPlayhead(&p, playhead_pos, height());
}
}