diff options
author | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 21:02:23 -0500 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 21:02:23 -0500 |
commit | 8e4c0d86c8df94d629413cd7863dc3a83cc21959 (patch) | |
tree | ae335170d0b56d1d444efa3efc37f99364d6e967 /menus.c | |
parent | f29d7c0652072b482679c2503be6f2524f45fe35 (diff) |
do not overwrite error screens from periodic loop
Diffstat (limited to 'menus.c')
-rw-r--r-- | menus.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -249,7 +249,9 @@ static int Menu_Is_Item_Visible(int LCD_entry) void Update_Main_Menu_If_Visible(void) { - if (globals.MenuStatus.Type_Of_Menu == Main_Menu_On) { + if ( (globals.MenuStatus.Type_Of_Menu == Main_Menu_On) && + (globals.MenuStatus.Error_Screen == NO) && + (globals.MenuStatus.Nonstd_Display == NO)) { Show_Main_Menu(); } } |