From 462a8a951e09a74fbded92069f5dd973535875b3 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 27 Apr 2016 19:35:55 -0700 Subject: [PATCH] A little extra gcode_T spacing --- Marlin/Marlin_main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 0f5fa9c42..4100e629a 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -6374,20 +6374,27 @@ inline void gcode_T(uint8_t tmp_extruder) { #endif #else // !AUTO_BED_LEVELING_FEATURE + // Offset extruder (only by XY) for (int i=X_AXIS; i<=Y_AXIS; i++) current_position[i] += extruder_offset[i][tmp_extruder] - extruder_offset[i][active_extruder]; + #endif // !AUTO_BED_LEVELING_FEATURE + // Set the new active extruder and position active_extruder = tmp_extruder; + #endif // !DUAL_X_CARRIAGE + #if ENABLED(DELTA) sync_plan_position_delta(); #else sync_plan_position(); #endif + // Move to the old position if (IsRunning()) prepare_move(); + } // (tmp_extruder != active_extruder) #if ENABLED(EXT_SOLENOID)