Skip to content

Commit

Permalink
🔧 No DISABLE_OTHER_EXTRUDERS if < 2 steppers (MarlinFirmware#25818)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMagician authored and Andy-Big committed Jul 17, 2023
1 parent 33add39 commit 616fa9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/inc/Conditionals_LCD.h
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,8 @@

#endif

// No inactive extruders with SWITCHING_NOZZLE or Průša MMU1
#if HAS_SWITCHING_NOZZLE || HAS_PRUSA_MMU1
// No inactive extruders with SWITCHING_NOZZLE or Průša MMU1 or just 1 E stepper exists
#if HAS_SWITCHING_NOZZLE || HAS_PRUSA_MMU1 || E_STEPPERS < 2
#undef DISABLE_OTHER_EXTRUDERS
#endif

Expand Down

0 comments on commit 616fa9e

Please sign in to comment.