Fix regression in memory mode

Show frequency in memory mode when not receiving M17
This commit is contained in:
Marco 2023-09-17 12:49:28 +02:00 committed by silseva
parent 1a7d62fb42
commit 467ad6bd7a
1 changed files with 3 additions and 0 deletions

View File

@ -322,7 +322,10 @@ void _ui_drawMainMEM(ui_state_t* ui_state)
// Show channel data if the OpMode is not M17 or there is no valid LSF data
rtxStatus_t status = rtx_getCurrentStatus();
if((status.opMode != OPMODE_M17) || (status.lsfOk == false))
{
_ui_drawBankChannel();
_ui_drawFrequency();
}
_ui_drawMainBottom();
}