Fix prompt string for 12/24 hour picker

This commit is contained in:
Jonathan Bennett 2025-06-23 00:29:32 -05:00
parent b55e763b29
commit 6a91741209

View File

@ -1495,7 +1495,7 @@ void Screen::LoraRegionPicker(uint32_t duration)
void Screen::TwelveHourPicker() void Screen::TwelveHourPicker()
{ {
static const char *optionsArray[] = {"Back", "12-hour", "24-hour"}; static const char *optionsArray[] = {"Back", "12-hour", "24-hour"};
showOverlayBanner("Pick Timezone", 30000, optionsArray, 3, [](int selected) -> void { showOverlayBanner("12/24 display?", 30000, optionsArray, 3, [](int selected) -> void {
if (selected == 0) { if (selected == 0) {
return; return;
} else if (selected == 1) { } else if (selected == 1) {