Browse Source

Patch max_jerk[Z] menu item

Scott Lahteine 7 years ago
parent
commit
c592ccb6f5
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp View File

@@ -1815,7 +1815,7 @@ void kill_screen(const char* lcd_msg) {
1815 1815
     MENU_ITEM_EDIT(float3, MSG_VX_JERK, &planner.max_jerk[X_AXIS], 1, 990);
1816 1816
     MENU_ITEM_EDIT(float3, MSG_VY_JERK, &planner.max_jerk[Y_AXIS], 1, 990);
1817 1817
     #if ENABLED(DELTA)
1818
-      MENU_ITEM_EDIT(float3, MSG_VZ_JERK, &planner.max_jerk[Y_AXIS], 1, 990);
1818
+      MENU_ITEM_EDIT(float3, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 1, 990);
1819 1819
     #else
1820 1820
       MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 0.1, 990);
1821 1821
     #endif

Loading…
Cancel
Save