From 6a917412092680609283ad5a77ddf62520f1f0b2 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Mon, 23 Jun 2025 00:29:32 -0500 Subject: [PATCH] Fix prompt string for 12/24 hour picker --- src/graphics/Screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 57c72595f..dc13ce39a 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -1495,7 +1495,7 @@ void Screen::LoraRegionPicker(uint32_t duration) void Screen::TwelveHourPicker() { 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) { return; } else if (selected == 1) {