Show ? near Z value if the position is unknown
This commit is contained in:
parent
955c88cf68
commit
9abdf4e535
|
|
@ -586,7 +586,7 @@ void lcdui_print_Z_coord(void)
|
||||||
if (custom_message_type == CustomMsg::MeshBedLeveling)
|
if (custom_message_type == CustomMsg::MeshBedLeveling)
|
||||||
lcd_puts_P(_N("Z --- "));
|
lcd_puts_P(_N("Z --- "));
|
||||||
else
|
else
|
||||||
lcd_printf_P(_N("Z%6.2f "), current_position[Z_AXIS]);
|
lcd_printf_P(_N("Z%6.2f%c"), current_position[Z_AXIS], axis_known_position[Z_AXIS]?' ':'?');
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef PLANNER_DIAGNOSTICS
|
#ifdef PLANNER_DIAGNOSTICS
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue