[ui_text] increasing order

This commit is contained in:
Gwenhael Le Moine 2024-06-11 09:45:03 +02:00
parent 79e14e1990
commit 964f34a92a
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -230,10 +230,10 @@ static inline void ncurses_draw_lcd_fullsize( void )
static inline void ncurses_draw_lcd( void ) static inline void ncurses_draw_lcd( void )
{ {
if ( config.small ) if ( config.tiny )
ncurses_draw_lcd_small();
else if ( config.tiny )
ncurses_draw_lcd_tiny(); ncurses_draw_lcd_tiny();
else if ( config.small )
ncurses_draw_lcd_small();
else else
ncurses_draw_lcd_fullsize(); ncurses_draw_lcd_fullsize();
} }