From eba305649d5041dedc47a9dc04989cc97b295403 Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Sun, 28 May 2023 23:38:47 -0400 Subject: [PATCH] Hide Stand Still Timer when map is visible --- selfdrive/ui/qt/onroad.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/onroad.cc b/selfdrive/ui/qt/onroad.cc index 1ee0b93d2f..17927f668c 100644 --- a/selfdrive/ui/qt/onroad.cc +++ b/selfdrive/ui/qt/onroad.cc @@ -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); }