From 49cb28c5b82e908159a20e7a7c29ecb314aec758 Mon Sep 17 00:00:00 2001 From: Federico Amedeo Izzo Date: Sat, 5 Jun 2021 09:36:00 +0200 Subject: [PATCH] Fix RTX not updated when switching from MEM to VFO (#30,TG-240,TG-241) --- openrtx/src/ui/ui.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openrtx/src/ui/ui.c b/openrtx/src/ui/ui.c index 0f3695f0..a79dba97 100644 --- a/openrtx/src/ui/ui.c +++ b/openrtx/src/ui/ui.c @@ -834,6 +834,8 @@ void ui_updateFSM(event_t event, bool *sync_rtx) { // Restore VFO channel state.channel = state.vfo_channel; + // Update RTX configuration + *sync_rtx = true; // Switch to VFO screen state.ui_screen = MAIN_VFO; }