From 3365fe4d2f664ee31c360f778e405e43f1f1aea2 Mon Sep 17 00:00:00 2001 From: Federico Amedeo Izzo Date: Sun, 10 Jan 2021 09:27:55 +0100 Subject: [PATCH] UI: Move VFO/MEM indicator to the left of the bottom bar --- openrtx/src/ui/ui_main.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/openrtx/src/ui/ui_main.c b/openrtx/src/ui/ui_main.c index ffb983be..1037c114 100644 --- a/openrtx/src/ui/ui_main.c +++ b/openrtx/src/ui/ui_main.c @@ -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); }