Skip to content

Commit

Permalink
🩹 Fix edit Z jerk step size (MarlinFirmware#26650)
Browse files Browse the repository at this point in the history
Followup to MarlinFirmware#25514

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
  • Loading branch information
vovodroid and thinkyhead committed Jan 9, 2024
1 parent f6ecdae commit a533e9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Marlin/src/inc/Conditionals_LCD.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,10 +263,13 @@
#endif
#if NUM_AXES >= 1
#define HAS_X_AXIS 1
#define HAS_A_AXIS 1
#if NUM_AXES >= XY
#define HAS_Y_AXIS 1
#define HAS_B_AXIS 1
#if NUM_AXES >= XYZ
#define HAS_Z_AXIS 1
#define HAS_C_AXIS 1
#if NUM_AXES >= 4
#define HAS_I_AXIS 1
#if NUM_AXES >= 5
Expand Down

0 comments on commit a533e9e

Please sign in to comment.