|
@@ -134,12 +134,12 @@ static void lcd_factory_settings() {
|
134
|
134
|
START_MENU();
|
135
|
135
|
MENU_BACK(MSG_MAIN);
|
136
|
136
|
#if ENABLED(DUAL_X_CARRIAGE)
|
137
|
|
- MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float52, MSG_X_OFFSET, &hotend_offset[X_AXIS][1], MIN(X2_HOME_POS, X2_MAX_POS) - 25.0, MAX(X2_HOME_POS, X2_MAX_POS) + 25.0, _recalc_offsets);
|
|
137
|
+ MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float51, MSG_X_OFFSET, &hotend_offset[X_AXIS][1], MIN(X2_HOME_POS, X2_MAX_POS) - 25.0, MAX(X2_HOME_POS, X2_MAX_POS) + 25.0, _recalc_offsets);
|
138
|
138
|
#else
|
139
|
|
- MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float52, MSG_X_OFFSET, &hotend_offset[X_AXIS][1], -10.0, 10.0, _recalc_offsets);
|
|
139
|
+ MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float51, MSG_X_OFFSET, &hotend_offset[X_AXIS][1], -10.0, 10.0, _recalc_offsets);
|
140
|
140
|
#endif
|
141
|
|
- MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float52, MSG_Y_OFFSET, &hotend_offset[Y_AXIS][1], -10.0, 10.0, _recalc_offsets);
|
142
|
|
- MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float52, MSG_Z_OFFSET, &hotend_offset[Z_AXIS][1], Z_PROBE_LOW_POINT, 10.0, _recalc_offsets);
|
|
141
|
+ MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float51, MSG_Y_OFFSET, &hotend_offset[Y_AXIS][1], -10.0, 10.0, _recalc_offsets);
|
|
142
|
+ MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float51, MSG_Z_OFFSET, &hotend_offset[Z_AXIS][1], Z_PROBE_LOW_POINT, 10.0, _recalc_offsets);
|
143
|
143
|
#if ENABLED(EEPROM_SETTINGS)
|
144
|
144
|
MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
|
145
|
145
|
#endif
|
|
@@ -287,7 +287,7 @@ void menu_configuration() {
|
287
|
287
|
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
|
288
|
288
|
MENU_ITEM(submenu, MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
|
289
|
289
|
#elif HAS_BED_PROBE
|
290
|
|
- MENU_ITEM_EDIT(float52, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX);
|
|
290
|
+ MENU_ITEM_EDIT(float52sign, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX);
|
291
|
291
|
#endif
|
292
|
292
|
|
293
|
293
|
const bool busy = printer_busy();
|