Browse Source

Patch tool_change typo

vanilla_fb_2.0.x
Scott Lahteine 4 years ago
parent
commit
44b71103df
  1. 2
      Marlin/src/module/tool_change.cpp

2
Marlin/src/module/tool_change.cpp

@ -947,7 +947,7 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) {
// Unload / Retract
#if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
const bool should_swap = can_move_away && toolchange_settings.swap_length;
const bool should_swap = can_move_away && toolchange_settings.swap_length,
too_cold = TERN0(PREVENT_COLD_EXTRUSION,
!DEBUGGING(DRYRUN) && (thermalManager.targetTooColdToExtrude(old_tool) || thermalManager.targetTooColdToExtrude(new_tool))
);

Loading…
Cancel
Save