UI: reduce menu entries font size

This commit is contained in:
Federico Amedeo Izzo 2020-12-06 22:17:20 +01:00
parent 7273c084ca
commit 9e50b7c9b1
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}