We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 331c5f8 commit 16f13cbCopy full SHA for 16f13cb
source/Marlin/src/lcd/tft/ui_320x240.cpp
@@ -550,13 +550,13 @@ void MarlinUI::draw_status_screen(char seclect) {
550
551
// print duration
552
char buffer[14];
553
- if( blink)
+ if(blink && !busy)
554
{
555
- color=COLOR_VIVID_GREEN;
+ color=COLOR_GREY;
556
}
557
else
558
559
- color=COLOR_GREY;
+ color=COLOR_VIVID_GREEN;
560
561
duration_t elapsed = print_job_timer.duration();
562
elapsed.toDigital(buffer);
0 commit comments