Single pause flag also indicates SD print pause

This commit is contained in:
Scott Lahteine
2017-12-30 04:03:41 -06:00
parent 6d94bbf618
commit 9686ffedef
3 changed files with 11 additions and 12 deletions

View File

@ -346,7 +346,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
// Prevent steppers timing-out in the middle of M600
#if ENABLED(ADVANCED_PAUSE_FEATURE) && ENABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
#define MOVE_AWAY_TEST !move_away_flag
#define MOVE_AWAY_TEST !did_pause_print
#else
#define MOVE_AWAY_TEST true
#endif