From 04ba9937bff9d62b4291ceb6a2a3f3109a2c35a7 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 3 May 2025 15:24:12 -0500 Subject: [PATCH] clean --- Marlin/src/module/tool_change.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Marlin/src/module/tool_change.cpp b/Marlin/src/module/tool_change.cpp index 74b6e8a612..fcaa64cefe 100644 --- a/Marlin/src/module/tool_change.cpp +++ b/Marlin/src/module/tool_change.cpp @@ -1415,13 +1415,12 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) { #endif } // (new_tool != old_tool) - else - { - // For switching nozzle with servos, you may have manually edited servo angles - // or other functions which may affect angles. Ensure a T# command restores - // active tool position even when recalling the same tool + else { + // For switching-nozzle-with-servos you may have manually-edited servo angles + // or other functions that can affect angles. So here we ensure a T# command + // restores active tool position even when recalling the same tool. TERN_(SWITCHING_NOZZLE_TWO_SERVOS, lower_nozzle(new_tool)); - } + } planner.synchronize();