Browse Source

Use multiplier edit item for mesh point editing

Scott Lahteine 6 years ago
parent
commit
fed84f2961
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/menu/menu_bed_leveling.cpp

+ 1
- 1
Marlin/src/lcd/menu/menu_bed_leveling.cpp View File

@@ -212,7 +212,7 @@
212 212
     MENU_BACK(MSG_BED_LEVELING);
213 213
     MENU_ITEM_EDIT(int8, MSG_MESH_X, &xind, 0, GRID_MAX_POINTS_X - 1);
214 214
     MENU_ITEM_EDIT(int8, MSG_MESH_Y, &yind, 0, GRID_MAX_POINTS_Y - 1);
215
-    MENU_ITEM_EDIT_CALLBACK(float43, MSG_MESH_EDIT_Z, &Z_VALUES(xind, yind), -(LCD_PROBE_Z_RANGE) * 0.5, (LCD_PROBE_Z_RANGE) * 0.5, refresh_planner);
215
+    MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_MESH_EDIT_Z, &Z_VALUES(xind, yind), -(LCD_PROBE_Z_RANGE) * 0.5, (LCD_PROBE_Z_RANGE) * 0.5, refresh_planner);
216 216
     END_MENU();
217 217
   }
218 218
 

Loading…
Cancel
Save