diff --git a/openrtx/src/ui.c b/openrtx/src/ui.c index bed11ca7..f0ad6b38 100644 --- a/openrtx/src/ui.c +++ b/openrtx/src/ui.c @@ -736,6 +736,7 @@ void ui_updateFSM(event_t event, bool *sync_rtx) { state.channel.rx_frequency = new_rx_frequency; state.channel.tx_frequency = new_rx_frequency; + *sync_rtx = true; } } // Otherwise set both frequencies @@ -746,6 +747,7 @@ void ui_updateFSM(event_t event, bool *sync_rtx) { state.channel.rx_frequency = new_rx_frequency; state.channel.tx_frequency = new_tx_frequency; + *sync_rtx = true; } } state.ui_screen = VFO_MAIN; @@ -802,6 +804,7 @@ void ui_updateFSM(event_t event, bool *sync_rtx) { state.channel.rx_frequency = new_rx_frequency; state.channel.tx_frequency = new_tx_frequency; + *sync_rtx = true; } state.ui_screen = VFO_MAIN; }