fix(ui): trim extra pixel from checkmark glyph long arm

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
MarekZegare4
2026-06-14 14:41:23 +02:00
parent 7489281dc5
commit 54b53f7f0f

View File

@@ -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++) {