Make nomove=false for toolchange on filament swap (#12739)

This commit is contained in:
InsanityAutomation
2018-12-27 12:38:35 -05:00
committed by Scott Lahteine
parent 14ddda285c
commit 530ef5846f
2 changed files with 7 additions and 7 deletions

View File

@@ -88,7 +88,7 @@ void GcodeSuite::M600() {
#if ENABLED(DUAL_X_CARRIAGE)
&& dual_x_carriage_mode != DXC_DUPLICATION_MODE && dual_x_carriage_mode != DXC_SCALED_DUPLICATION_MODE
#endif
) tool_change(target_extruder, 0, true);
) tool_change(target_extruder, 0, false);
#endif
// Initial retract before move to filament change position
@@ -137,7 +137,7 @@ void GcodeSuite::M600() {
#if EXTRUDERS > 1
// Restore toolhead if it was changed
if (active_extruder_before_filament_change != active_extruder)
tool_change(active_extruder_before_filament_change, 0, true);
tool_change(active_extruder_before_filament_change, 0, false);
#endif
}