Advanced pause fixes (#7518)

* Disallow filament change while paused

* Use kinematic movemements in pause_print and resume_print
This commit is contained in:
Thomas Moore
2017-08-15 22:57:13 -05:00
committed by Roxy-3D
parent ab2ac1af71
commit 257b693ab0
3 changed files with 20 additions and 32 deletions

View File

@@ -2425,7 +2425,7 @@ void kill_screen(const char* lcd_msg) {
// Change filament
//
#if ENABLED(ADVANCED_PAUSE_FEATURE)
if (!thermalManager.tooColdToExtrude(active_extruder) && !IS_SD_PRINTING)
if (!thermalManager.tooColdToExtrude(active_extruder) && !IS_SD_FILE_OPEN)
MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
#endif