🎨 Misc. issue review patches

This commit is contained in:
Scott Lahteine
2021-10-22 13:21:26 -05:00
parent b6a8cc06fa
commit a7549aac5c
5 changed files with 16 additions and 16 deletions

View File

@@ -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