Display the current event as a green blob

This commit is contained in:
baldurk
2018-02-24 10:59:51 +00:00
parent 08c7287fe9
commit 357113160b
+1 -1
View File
@@ -957,7 +957,7 @@ void TimelineBar::paintMarkers(QPainter &p, const QVector<Marker> &markers,
path.addRoundedRect(r, 5, 5);
p.setPen(QPen(palette().brush(QPalette::Text), 1.0));
p.fillPath(path, Qt::blue);
p.fillPath(path, d == m_Ctx.CurEvent() ? Qt::green : Qt::blue);
p.drawPath(path);
}