Browse Source

Fix filament Change heading on LCD (#15783)

Roman Moravčík 4 years ago
parent
commit
41b5d720e2
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/feature/pause.cpp

+ 2
- 2
Marlin/src/feature/pause.cpp View File

@@ -464,7 +464,7 @@ bool pause_print(const float &retract, const xyz_pos_t &park_point, const float
464 464
   #endif
465 465
 
466 466
   if (unload_length)   // Unload the filament
467
-    unload_filament(unload_length, show_lcd);
467
+    unload_filament(unload_length, show_lcd, PAUSE_MODE_CHANGE_FILAMENT);
468 468
 
469 469
   #if ENABLED(DUAL_X_CARRIAGE)
470 470
     active_extruder = saved_ext;
@@ -637,7 +637,7 @@ void resume_print(const float &slow_load_length/*=0*/, const float &fast_load_le
637 637
   }
638 638
 
639 639
   if (nozzle_timed_out || thermalManager.hotEnoughToExtrude(active_extruder)) // Load the new filament
640
-    load_filament(slow_load_length, fast_load_length, purge_length, max_beep_count, true, nozzle_timed_out, PAUSE_MODE_PAUSE_PRINT DXC_PASS);
640
+    load_filament(slow_load_length, fast_load_length, purge_length, max_beep_count, true, nozzle_timed_out, PAUSE_MODE_SAME DXC_PASS);
641 641
 
642 642
   #if HAS_LCD_MENU
643 643
     lcd_pause_show_message(PAUSE_MESSAGE_RESUME);

Loading…
Cancel
Save