From 4063c2d2961674ddb80a5ae168300a62f3f775a8 Mon Sep 17 00:00:00 2001 From: Jakub <106778416+MarekZegare4@users.noreply.github.com> Date: Wed, 13 May 2026 21:09:37 +0200 Subject: [PATCH] style: shorten Del label to [Dl] to fit 25px special row cell Co-Authored-By: Claude Sonnet 4.6 --- examples/companion_radio/ui-new/KeyboardWidget.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/companion_radio/ui-new/KeyboardWidget.h b/examples/companion_radio/ui-new/KeyboardWidget.h index 524598f9..1fa91c23 100644 --- a/examples/companion_radio/ui-new/KeyboardWidget.h +++ b/examples/companion_radio/ui-new/KeyboardWidget.h @@ -79,8 +79,8 @@ struct KeyboardWidget { } } - // special row: [^] [Sp] [Del] [{}] [OK] - const char* spec[] = { "[^]", "[Sp]", "[Del]", "[{}]", "[OK]" }; + // special row: [^] [Sp] [Dl] [{}] [OK] + const char* spec[] = { "[^]", "[Sp]", "[Dl]", "[{}]", "[OK]" }; for (int i = 0; i < KB_SPECIAL; i++) { bool sel = (row == KB_ROWS_CHAR && col == i); bool active = (i == 0 && caps);