Skip to content

Commit

Permalink
Fix a typo in MarlinFirmware#3586 to fix MBL
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 23, 2016
1 parent 8620024 commit 88c6693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1047,14 +1047,14 @@ void lcd_cooldown() {
*/
static void _lcd_level_bed_homing() {
if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_HOMING), NULL);
if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
lcdDrawUpdate =
#if ENABLED(DOGLCD)
LCDVIEW_CALL_REDRAW_NEXT
#else
LCDVIEW_CALL_NO_REDRAW
#endif
;
if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
lcd_goto_menu(_lcd_level_bed_homing_done);
}

Expand Down

0 comments on commit 88c6693

Please sign in to comment.