fix: remove label prefix from keyboard preview for visual consistency

All three keyboard instances (Settings, QuickMsg, Bot) now show plain
text + cursor without any field-name prefix. Removes the label field
from KeyboardWidget entirely — the screen title already indicates context.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jakub
2026-05-13 21:09:47 +02:00
co-authored by Claude Sonnet 4.6
parent 5fecafd4f9
commit 464f5cd7a2
3 changed files with 6 additions and 15 deletions
+1 -3
View File
@@ -573,9 +573,7 @@ public:
if (isMsgSlot(_selected) && enter) {
int slot = msgSlotIndex(_selected);
_edit_slot = slot;
char lbl[6];
snprintf(lbl, sizeof(lbl), "M%d:", slot + 1);
_kb.begin(p ? p->custom_msgs[slot] : "", KB_MAX_LEN, lbl);
_kb.begin(p ? p->custom_msgs[slot] : "");
return true;
}
return false;