fixed issue where timecodes in UI weren't updated correctly

This commit is contained in:
itsmattkc
2021-04-13 13:22:46 +10:00
parent 31b543c421
commit e54854b78a
3 changed files with 31 additions and 29 deletions
+4 -2
View File
@@ -180,9 +180,11 @@ void SeekableWidget::SeekToScreenPoint(int screen)
}
}
SetTime(timestamp);
if (timestamp != GetTime()) {
SetTime(timestamp);
emit TimeChanged(timestamp);
emit TimeChanged(timestamp);
}
}
void SeekableWidget::DrawTimelinePoints(QPainter* p, int marker_bottom)