From 593d5375eaf51f6c313c7d6b7a5edfa3a9e46a97 Mon Sep 17 00:00:00 2001 From: Colin Gilgenbach Date: Tue, 21 Aug 2018 22:42:55 -0600 Subject: [PATCH] Fix G28 resetting DUAL_NOZZLE_DUPLICATION_MODE (#11605) There's no reason for G28 to reset DUAL_NOZZLE_DUPLICATION_MODE, because it only affects the E stepper, unlike DUAL_X_CARRIAGE which affects the X steppers as well. --- Marlin/src/gcode/calibrate/G28.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/calibrate/G28.cpp b/Marlin/src/gcode/calibrate/G28.cpp index c512edde0..ffd81c1ea 100644 --- a/Marlin/src/gcode/calibrate/G28.cpp +++ b/Marlin/src/gcode/calibrate/G28.cpp @@ -229,7 +229,7 @@ void GcodeSuite::G28(const bool always_home_all) { tool_change(0, 0, true); #endif - #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE) + #if ENABLED(DUAL_X_CARRIAGE) extruder_duplication_enabled = false; #endif