Make nomove=false for toolchange on filament swap (#12739)
This commit is contained in:
committed by
Scott Lahteine
parent
14ddda285c
commit
530ef5846f
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user