From 54b53f7f0f20f0661680bdd79327be89435d53d2 Mon Sep 17 00:00:00 2001 From: MarekZegare4 Date: Sun, 14 Jun 2026 14:41:23 +0200 Subject: [PATCH] fix(ui): trim extra pixel from checkmark glyph long arm Co-Authored-By: Claude Opus 4.8 --- examples/companion_radio/ui-new/QuickMsgScreen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/companion_radio/ui-new/QuickMsgScreen.h b/examples/companion_radio/ui-new/QuickMsgScreen.h index cd2a033b..b58c24fe 100644 --- a/examples/companion_radio/ui-new/QuickMsgScreen.h +++ b/examples/companion_radio/ui-new/QuickMsgScreen.h @@ -290,7 +290,7 @@ class QuickMsgScreen : public UIScreen { d.fillRect(x + 1, y + 3, 1, 1); d.fillRect(x + 2, y + 2, 1, 1); d.fillRect(x + 3, y + 1, 1, 1); - d.fillRect(x + 4, y, 1, 2); + d.fillRect(x + 4, y, 1, 1); break; case ACK_FAIL: // "✗" no confirmation for (int i = 0; i < 4; i++) {