0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 22:58:04 +03:00

Menu text update

This commit is contained in:
OneOfEleven
2023-10-10 18:00:01 +01:00
parent 92bf3ccf57
commit d1c7d5beb6
6 changed files with 12 additions and 4 deletions

View File

@ -674,7 +674,10 @@ void UI_DisplayMenu(void)
#endif
case MENU_AUTOLK:
strcpy(String, (g_sub_menu_selection == 0) ? "OFF" : "AUTO");
if (g_sub_menu_selection == 0)
strcpy(String, "OFF");
else
sprintf(String, "%u secs", key_lock_timeout_500ms / 2);
break;
case MENU_COMPAND: