From 097a8c3d7ca88c94e008962055fd84a7eaf8c016 Mon Sep 17 00:00:00 2001 From: Colin Gilgenbach Date: Tue, 21 Aug 2018 19:51:45 -0600 Subject: [PATCH] Fix G28 resetting DUAL_NOZZLE_DUPLICATION_MODE 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 c512edde0c1d..ffd81c1ead12 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