Display the current standstill time

This commit is contained in:
James
2025-12-01 12:00:00 -07:00
parent 6ab4df3197
commit 0c6b96d9cd
3 changed files with 70 additions and 2 deletions
+3 -1
View File
@@ -51,7 +51,9 @@ void HudRenderer::draw(QPainter &p, const QRect &surface_rect) {
if (is_cruise_available) {
drawSetSpeed(p, surface_rect);
}
drawCurrentSpeed(p, surface_rect);
if (frogpilot_nvg->standstillDuration == 0) {
drawCurrentSpeed(p, surface_rect);
}
p.restore();
}