|
@@ -1047,7 +1047,6 @@ void lcd_cooldown() {
|
1047
|
1047
|
*/
|
1048
|
1048
|
static void _lcd_level_bed_homing() {
|
1049
|
1049
|
if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_HOMING), NULL);
|
1050
|
|
- if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
|
1051
|
1050
|
lcdDrawUpdate =
|
1052
|
1051
|
#if ENABLED(DOGLCD)
|
1053
|
1052
|
LCDVIEW_CALL_REDRAW_NEXT
|
|
@@ -1055,6 +1054,7 @@ void lcd_cooldown() {
|
1055
|
1054
|
LCDVIEW_CALL_NO_REDRAW
|
1056
|
1055
|
#endif
|
1057
|
1056
|
;
|
|
1057
|
+ if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
|
1058
|
1058
|
lcd_goto_menu(_lcd_level_bed_homing_done);
|
1059
|
1059
|
}
|
1060
|
1060
|
|