From 91d19e809e8fdd0fc8fd7951a9a4c44f514eae3d Mon Sep 17 00:00:00 2001 From: vk7js <58905135+vk7js@users.noreply.github.com> Date: Fri, 9 Sep 2022 22:50:18 +1000 Subject: [PATCH] Fixed issue of menus not reading at vp level 1. --- openrtx/src/ui/ui_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrtx/src/ui/ui_menu.c b/openrtx/src/ui/ui_menu.c index 34a6be7a..3ae7d438 100644 --- a/openrtx/src/ui/ui_menu.c +++ b/openrtx/src/ui/ui_menu.c @@ -116,7 +116,7 @@ static bool ScreenContainsReadOnlyEntries(int menuScreen) static void announceMenuItemIfNeeded(char* name, char* value, bool editMode) { - if (state.settings.vpLevel <= vpLow) + if (state.settings.vpLevel < vpLow) return; if ((name == NULL) || (*name == '\0'))