|
|
@ -536,7 +536,7 @@ void lcd_set_home_offsets() { |
|
|
|
babystepsTodo[axis] += distance; |
|
|
|
#endif |
|
|
|
} |
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(msg, ""); |
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(msg, NULL); |
|
|
|
if (LCD_CLICKED) lcd_goto_previous_menu(); |
|
|
|
} |
|
|
|
|
|
|
@ -2482,7 +2482,7 @@ char* ftostr52(const float& x) { |
|
|
|
* MBL Move to mesh starting point |
|
|
|
*/ |
|
|
|
static void _lcd_level_bed_homing() { |
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("XYZ"), MSG_LEVEL_BED_HOMING); |
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("XYZ " MSG_LEVEL_BED_HOMING), NULL); |
|
|
|
if (axis_known_position[X_AXIS] && axis_known_position[Y_AXIS] && axis_known_position[Z_AXIS]) { |
|
|
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z; |
|
|
|
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); |
|
|
|