Browse Source

Allow X, Y, Z manual move when cold. (#12209)

Roman Moravčík 6 years ago
parent
commit
55dec02ca1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/ultralcd.cpp

+ 1
- 1
Marlin/src/lcd/ultralcd.cpp View File

@@ -3226,7 +3226,7 @@ void lcd_quick_feedback(const bool clear_buttons) {
3226 3226
       }
3227 3227
     }
3228 3228
     #if ENABLED(PREVENT_COLD_EXTRUSION)
3229
-      if (thermalManager.tooColdToExtrude(eindex >= 0 ? eindex : active_extruder))
3229
+      if (axis == E_AXIS && thermalManager.tooColdToExtrude(eindex >= 0 ? eindex : active_extruder))
3230 3230
         MENU_BACK(MSG_HOTEND_TOO_COLD);
3231 3231
       else
3232 3232
     #endif

Loading…
Cancel
Save