ui: shift health overlay labels 50px left

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-16 22:35:22 -05:00
parent 83aed16a35
commit 7a0854387e

View File

@@ -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;