From 7a0854387e2661d506e0dbef3c3ce30ddd2a6b7d Mon Sep 17 00:00:00 2001 From: Brian Hanson Date: Thu, 16 Apr 2026 22:35:22 -0500 Subject: [PATCH] ui: shift health overlay labels 50px left Co-Authored-By: Claude Opus 4.6 (1M context) --- selfdrive/ui/qt/onroad.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/ui/qt/onroad.cc b/selfdrive/ui/qt/onroad.cc index 7f78d6d..2a996b3 100755 --- a/selfdrive/ui/qt/onroad.cc +++ b/selfdrive/ui/qt/onroad.cc @@ -797,8 +797,8 @@ void AnnotatedCameraWidget::drawHealthMetrics(QPainter &p) { int text_y = y + margin + fm.ascent(); for (int i = 0; i < n; i++) { p.setPen(rows[i].color); - // label left, value right - p.drawText(x + margin, text_y, rows[i].label); + // label left (shifted -50px per user request), value right + p.drawText(x + margin - 50, text_y, rows[i].label); QRect vrect = fm.boundingRect(rows[i].value); p.drawText(x + panel_w - margin - vrect.width(), text_y, rows[i].value); text_y += row_h + gap;