Browse Source

Fix filament runout for idex duplication modes (#12168)

InsanityAutomation 6 years ago
parent
commit
55ac2f4c23
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Marlin/src/feature/runout.h

+ 4
- 0
Marlin/src/feature/runout.h View File

@@ -167,6 +167,10 @@ class FilamentSensorTypeSwitch : public FilamentSensorTypeBase {
167 167
         return runout_bits;                     // A single sensor applying to all extruders
168 168
       #else
169 169
         #if ENABLED(DUAL_X_CARRIAGE)
170
+          if (dual_x_carriage_mode == DXC_DUPLICATION_MODE || dual_x_carriage_mode == DXC_SCALED_DUPLICATION_MODE)
171
+            return runout_bits;                 // Any extruder
172
+          else
173
+        #elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
170 174
           if (extruder_duplication_enabled)
171 175
             return runout_bits;                 // Any extruder
172 176
           else

Loading…
Cancel
Save