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