Browse Source

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.
Colin Gilgenbach 6 years ago
parent
commit
593d5375ea
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/calibrate/G28.cpp

+ 1
- 1
Marlin/src/gcode/calibrate/G28.cpp View File

@@ -229,7 +229,7 @@ void GcodeSuite::G28(const bool always_home_all) {
229 229
     tool_change(0, 0, true);
230 230
   #endif
231 231
 
232
-  #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
232
+  #if ENABLED(DUAL_X_CARRIAGE)
233 233
     extruder_duplication_enabled = false;
234 234
   #endif
235 235
 

Loading…
Cancel
Save