From 99fc8a831130e412743ffa6b9a6cbe77db9e098b Mon Sep 17 00:00:00 2001 From: Krzysiek Egzmont Date: Tue, 24 Oct 2023 01:54:57 +0200 Subject: [PATCH] FIX #43: frequent offset menu is not working properly --- app/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/menu.c b/app/menu.c index 60e99a0..125b6b5 100644 --- a/app/menu.c +++ b/app/menu.c @@ -1267,7 +1267,7 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld) gAnotherVoiceID = (VOICE_ID_t)Key; #endif - Frequency = StrToUL(INPUTBOX_GetAscii()); + Frequency = StrToUL(INPUTBOX_GetAscii())*100; gSubMenuSelection = FREQUENCY_FloorToStep(Frequency + 75, gTxVfo->StepFrequency, 0); gInputBoxIndex = 0;