reset font on return to menu
This commit is contained in:
parent
76c19fff94
commit
a402918828
|
@ -79,6 +79,8 @@ void handleMenu(const struct MENU *the_menu) {
|
||||||
if (the_menu->entries[menuselection].callback!=NULL)
|
if (the_menu->entries[menuselection].callback!=NULL)
|
||||||
the_menu->entries[menuselection].callback();
|
the_menu->entries[menuselection].callback();
|
||||||
|
|
||||||
|
setSystemFont();
|
||||||
|
|
||||||
if (menuflags&MENU_JUSTONCE)
|
if (menuflags&MENU_JUSTONCE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -91,6 +93,7 @@ void handleMenu(const struct MENU *the_menu) {
|
||||||
if (the_menu->entries[menuselection].callback!=NULL)
|
if (the_menu->entries[menuselection].callback!=NULL)
|
||||||
the_menu->entries[menuselection].callback();
|
the_menu->entries[menuselection].callback();
|
||||||
lcdRefresh();
|
lcdRefresh();
|
||||||
|
setSystemFont();
|
||||||
|
|
||||||
if (menuflags&MENU_JUSTONCE)
|
if (menuflags&MENU_JUSTONCE)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue