Skip to content

Commit

Permalink
Update MarlinCore.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Mar 26, 2020
1 parent 87fa148 commit e628897
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Marlin/src/MarlinCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,16 +436,12 @@ void startOrResumeJob() {
#endif
break;

case 4:
did_state = // Display "Click to Continue..."
case 4: // Display "Click to Continue..."
#if HAS_RESUME_CONTINUE && HAS_LEDS_OFF_FLAG // 30 min timeout with LCD, 1 min without
queue.enqueue_one_P(
did_state = queue.enqueue_one_P(
print_job_timer.duration() < 60 ? PSTR("M0Q1P1") : PSTR("M0Q1S" TERN(HAS_LCD_MENU, "1800", "60"))
)
#else
true
);
#endif
;
break;

case 5:
Expand Down

0 comments on commit e628897

Please sign in to comment.