kopia lustrzana https://github.com/OpenRTX/OpenRTX
Fix regression in memory mode
Show frequency in memory mode when not receiving M17pull/193/head
rodzic
1a7d62fb42
commit
467ad6bd7a
|
@ -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
|
// Show channel data if the OpMode is not M17 or there is no valid LSF data
|
||||||
rtxStatus_t status = rtx_getCurrentStatus();
|
rtxStatus_t status = rtx_getCurrentStatus();
|
||||||
if((status.opMode != OPMODE_M17) || (status.lsfOk == false))
|
if((status.opMode != OPMODE_M17) || (status.lsfOk == false))
|
||||||
|
{
|
||||||
_ui_drawBankChannel();
|
_ui_drawBankChannel();
|
||||||
|
_ui_drawFrequency();
|
||||||
|
}
|
||||||
|
|
||||||
_ui_drawMainBottom();
|
_ui_drawMainBottom();
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue