Filament change causes freeze during paused print. This PR disables Filament change in the prepare menu when a print from SD Card is paused. See #7395
This commit is contained in:
Kai 2017-08-01 21:45:41 +02:00 committed by GitHub
parent 7ef0650504
commit ffe3013bb5

View file

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