UI: reduce menu entries font size

replace/252dc9fb7ba26a7261ebf2168cf97d2d67d8e59d
Federico Amedeo Izzo 2020-12-06 22:17:20 +01:00
rodzic 7273c084ca
commit 9e50b7c9b1
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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