diff --git a/examples/companion_radio/ui-new/RepeaterScreen.h b/examples/companion_radio/ui-new/RepeaterScreen.h index 5b4682bb..07ed4b08 100644 --- a/examples/companion_radio/ui-new/RepeaterScreen.h +++ b/examples/companion_radio/ui-new/RepeaterScreen.h @@ -188,6 +188,7 @@ public: switch (_picker.onSelected(_picker.menu.selectedIndex(), p, rptTarget(p))) { case RadioPresetPicker::START_SAVE: _task->keyboard().begin("", (int)sizeof(p->user_radio_presets[0].name) - 1); + _task->keyboard().clearPlaceholders(); // {loc}/{time} are for messages, not preset names break; case RadioPresetPicker::APPLIED: the_mesh.applyRepeaterRadio(); // live if currently relaying on the profile diff --git a/examples/companion_radio/ui-new/SettingsScreen.h b/examples/companion_radio/ui-new/SettingsScreen.h index 7fea6e29..0461fe3b 100644 --- a/examples/companion_radio/ui-new/SettingsScreen.h +++ b/examples/companion_radio/ui-new/SettingsScreen.h @@ -732,6 +732,7 @@ public: switch (_picker.onSelected(_picker.menu.selectedIndex(), p, radioTarget(p))) { case RadioPresetPicker::START_SAVE: _kb->begin("", (int)sizeof(p->user_radio_presets[0].name) - 1); + _kb->clearPlaceholders(); // {loc}/{time} are for messages, not preset names break; case RadioPresetPicker::APPLIED: _task->applyRadioParams();