Browse Source

Fix for #7395

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
Kai 7 years ago
parent
commit
ffe3013bb5
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp View File

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

Loading…
Cancel
Save