🎨 Misc. issue review patches
This commit is contained in:
@@ -106,7 +106,7 @@ void GcodeSuite::M600() {
|
||||
// Change toolhead if specified
|
||||
const uint8_t active_extruder_before_filament_change = active_extruder;
|
||||
if (active_extruder != target_extruder && TERN1(DUAL_X_CARRIAGE, !idex_is_duplicating()))
|
||||
tool_change(target_extruder, false);
|
||||
tool_change(target_extruder);
|
||||
#endif
|
||||
|
||||
// Initial retract before move to filament change position
|
||||
@@ -159,7 +159,7 @@ void GcodeSuite::M600() {
|
||||
#if HAS_MULTI_EXTRUDER
|
||||
// Restore toolhead if it was changed
|
||||
if (active_extruder_before_filament_change != active_extruder)
|
||||
tool_change(active_extruder_before_filament_change, false);
|
||||
tool_change(active_extruder_before_filament_change);
|
||||
#endif
|
||||
|
||||
TERN_(MIXING_EXTRUDER, mixer.T(old_mixing_tool)); // Restore original mixing tool
|
||||
|
||||
Reference in New Issue
Block a user