Parcourir la 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 il y a 6 ans
Parent
révision
593d5375ea
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      Marlin/src/gcode/calibrate/G28.cpp

+ 1
- 1
Marlin/src/gcode/calibrate/G28.cpp Voir le fichier

@@ -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
 

Chargement…
Annuler
Enregistrer