UI: Move VFO/MEM indicator to the left of the bottom bar

replace/9ad315fb69dd75422529920a17c4481ea84fb201
Federico Amedeo Izzo 2021-01-10 09:27:55 +01:00
rodzic 571adfaabf
commit 3365fe4d2f
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -165,13 +165,17 @@ void _ui_drawVFOMiddleInput(state_t* last_state, ui_state_t* ui_state)
void _ui_drawVFOBottom()
{
gfx_print(layout.bottom_left, "OpenRTX VFO", layout.bottom_font,
gfx_print(layout.bottom_left, "VFO", layout.bottom_font,
TEXT_ALIGN_LEFT, color_white);
gfx_print(layout.bottom_left, "OpenRTX", layout.bottom_font,
TEXT_ALIGN_CENTER, color_white);
}
void _ui_drawMEMBottom()
{
gfx_print(layout.bottom_left, "OpenRTX MEM", layout.bottom_font,
gfx_print(layout.bottom_left, "MEM", layout.bottom_font,
TEXT_ALIGN_LEFT, color_white);
gfx_print(layout.bottom_left, "OpenRTX", layout.bottom_font,
TEXT_ALIGN_CENTER, color_white);
}