Hide Stand Still Timer when map is visible

This commit is contained in:
Jason Wen
2023-05-28 23:38:47 -04:00
parent 30328c50a4
commit eba305649d
+1 -1
View File
@@ -836,7 +836,7 @@ void AnnotatedCameraWidget::drawHud(QPainter &p) {
}
// Stand Still Timer
if (standStillTimer && standStill) {
if (standStillTimer && standStill && !mapVisible) {
drawStandstillTimer(p, rect().right() - 650, 30 + 160 + 250);
}