mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-08-01 09:46:22 +00:00
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:
co-authored by
Claude Sonnet 4.6
parent
5fecafd4f9
commit
464f5cd7a2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user