diff --git a/app/display.c b/app/display.c index c3be373..27f0e1e 100644 --- a/app/display.c +++ b/app/display.c @@ -399,7 +399,6 @@ void restore_big_status(void) restore_screen_region(POP_STATUS_REGION, popup_status_save_buffer); big_status_displayed = false; - enable_big_status = false; } void check_input(void) @@ -410,6 +409,7 @@ void check_input(void) return; } else if (big_status_displayed) { restore_big_status(); + enable_big_status = false; } switch (input_key) { diff --git a/app/main.c b/app/main.c index 734b0e7..565ff78 100644 --- a/app/main.c +++ b/app/main.c @@ -671,7 +671,8 @@ void main(void) if (error_count == 0) { display_status("Pass "); display_big_status(true); - //display_notice("** Pass completed, no errors **"); + } else { + display_big_status(false); } } }