From a3954481707626942f3d749124a9ea345b32d4de Mon Sep 17 00:00:00 2001 From: Jason P Date: Wed, 25 Jun 2025 07:52:26 -0500 Subject: [PATCH] Menu wording adjustments --- src/graphics/draw/MenuHandler.cpp | 14 +++++++------- src/modules/SystemCommandsModule.cpp | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/graphics/draw/MenuHandler.cpp b/src/graphics/draw/MenuHandler.cpp index b4d970206..d43c95a34 100644 --- a/src/graphics/draw/MenuHandler.cpp +++ b/src/graphics/draw/MenuHandler.cpp @@ -251,17 +251,17 @@ void menuHandler::homeBaseMenu() if (kb_found) { #ifdef PIN_EINK_EN - static const char *optionsArray[] = {"Back", "Toggle Backlight", "Send Adhoc Ping", "New Preset Msg", "New Freetext Msg"}; + static const char *optionsArray[] = {"Back", "Toggle Backlight", "Send Position", "New Preset Msg", "New Freetext Msg"}; #else - static const char *optionsArray[] = {"Back", "Sleep Screen", "Send Adhoc Ping", "New Preset Msg", "New Freetext Msg"}; + static const char *optionsArray[] = {"Back", "Sleep Screen", "Send Position", "New Preset Msg", "New Freetext Msg"}; #endif optionsArrayPtr = optionsArray; options = 5; } else { #ifdef PIN_EINK_EN - static const char *optionsArray[] = {"Back", "Toggle Backlight", "Send Adhoc Ping", "New Preset Msg"}; + static const char *optionsArray[] = {"Back", "Toggle Backlight", "Send Position", "New Preset Msg"}; #else - static const char *optionsArray[] = {"Back", "Sleep Screen", "Send Adhoc Ping", "New Preset Msg"}; + static const char *optionsArray[] = {"Back", "Sleep Screen", "Send Position", "New Preset Msg"}; #endif optionsArrayPtr = optionsArray; options = 4; @@ -280,9 +280,9 @@ void menuHandler::homeBaseMenu() } else if (selected == 2) { service->refreshLocalMeshNode(); if (service->trySendPosition(NODENUM_BROADCAST, true)) { - LOG_INFO("Position Update Sent"); + LOG_INFO("Position Sent"); } else { - LOG_INFO("Node Info Update Sent"); + LOG_INFO("Node Info Sent"); } } else if (selected == 3) { cannedMessageModule->LaunchWithDestination(NODENUM_BROADCAST); @@ -317,7 +317,7 @@ void menuHandler::favoriteBaseMenu() void menuHandler::positionBaseMenu() { - static const char *optionsArray[] = {"Back", "GPS Enable", "Compass Point"}; + static const char *optionsArray[] = {"Back", "GPS Toggle", "Compass Point"}; screen->showOverlayBanner("Position Options", 30000, optionsArray, 3, [](int selected) -> void { if (selected == 1) { menuQueue = gps_toggle_menu; diff --git a/src/modules/SystemCommandsModule.cpp b/src/modules/SystemCommandsModule.cpp index 4f775ee81..6a7da95af 100644 --- a/src/modules/SystemCommandsModule.cpp +++ b/src/modules/SystemCommandsModule.cpp @@ -100,9 +100,9 @@ int SystemCommandsModule::handleInputEvent(const InputEvent *event) case INPUT_BROKER_SEND_PING: service->refreshLocalMeshNode(); if (service->trySendPosition(NODENUM_BROADCAST, true)) { - IF_SCREEN(screen->showOverlayBanner("Position\nUpdate Sent", 3000)); + IF_SCREEN(screen->showOverlayBanner("Position\nSent", 3000)); } else { - IF_SCREEN(screen->showOverlayBanner("Node Info\nUpdate Sent", 3000)); + IF_SCREEN(screen->showOverlayBanner("Node Info\nSent", 3000)); } return true; // Power control