Browse Source

Fix Manual Bed Leveling with multiple extruders (#16688)

Jason Smith 5 years ago
parent
commit
131acf304b
2 changed files with 1 additions and 5 deletions
  1. 1
    1
      Marlin/src/lcd/menu/menu_filament.cpp
  2. 0
    4
      Marlin/src/module/tool_change.cpp

+ 1
- 1
Marlin/src/lcd/menu/menu_filament.cpp View File

@@ -119,7 +119,7 @@ void _menu_temp_filament_op(const PauseMode mode, const int8_t extruder) {
119 119
           SUBMENU_N_P(s, msg, []{ _menu_temp_filament_op(PAUSE_MODE_CHANGE_FILAMENT, MenuItemBase::itemIndex); });
120 120
         else {
121 121
           ACTION_ITEM_N_P(s, msg, []{
122
-            char cmd[12];
122
+            char cmd[13];
123 123
             sprintf_P(cmd, PSTR("M600 B0 T%i"), int(MenuItemBase::itemIndex));
124 124
             lcd_enqueue_one_now(cmd);
125 125
           });

+ 0
- 4
Marlin/src/module/tool_change.cpp View File

@@ -821,10 +821,6 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) {
821 821
       if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("No move (not homed)");
822 822
     }
823 823
 
824
-    #if HAS_LCD_MENU
825
-      ui.return_to_status();
826
-    #endif
827
-
828 824
     #if ENABLED(DUAL_X_CARRIAGE)
829 825
       const bool idex_full_control = dual_x_carriage_mode == DXC_FULL_CONTROL_MODE;
830 826
     #else

Loading…
Cancel
Save