Show leveling status on character LCD

This commit is contained in:
MasterPIC 2017-09-25 09:53:51 +02:00 committed by Scott Lahteine
parent 3a8923be74
commit 7f8ff0a724

View File

@ -790,7 +790,11 @@ static void lcd_implementation_status_screen() {
lcd.setCursor(LCD_WIDTH - 8, 1);
_draw_axis_label(Z_AXIS, PSTR(MSG_Z), blink);
lcd.print(ftostr52sp(FIXFLOAT(current_position[Z_AXIS])));
#if HAS_LEVELING
lcd.write(leveling_is_active() || blink ? '_' : ' ');
#endif
#endif // LCD_HEIGHT > 2
//