From 9e50b7c9b1c75dd8d5bf99645b2a93e710863055 Mon Sep 17 00:00:00 2001 From: Federico Amedeo Izzo Date: Sun, 6 Dec 2020 22:17:20 +0100 Subject: [PATCH] UI: reduce menu entries font size --- openrtx/src/ui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openrtx/src/ui.c b/openrtx/src/ui.c index a0f5113a..deaf786f 100644 --- a/openrtx/src/ui.c +++ b/openrtx/src/ui.c @@ -303,9 +303,9 @@ bool _ui_drawMenuTop() for(int item=0; (item < MENU_NUM) && (pos.y < SCREEN_HEIGHT); item++) { snprintf(entry_buf, sizeof(entry_buf), "%s", menuItems[item]); - gfx_print(pos, entry_buf, layout.line1_font, + gfx_print(pos, entry_buf, layout.top_font, TEXT_ALIGN_LEFT, color_white); - pos.y += layout.line1_h; + pos.y += layout.top_h; } screen_update = true; }