Default to "Move Z" above a certain height even when printing
This speeds-up the ability to manually get the carriage out of the way just after a print has finished
This commit is contained in:
parent
367a28a5a8
commit
3a87ff56f6
@ -8258,7 +8258,7 @@ void menu_lcd_longpress_func(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (moves_planned() || IS_SD_PRINTING || is_usb_printing)
|
if (current_position[Z_AXIS] < Z_HEIGHT_HIDE_LIVE_ADJUST_MENU && (moves_planned() || IS_SD_PRINTING || is_usb_printing ))
|
||||||
{
|
{
|
||||||
lcd_clear();
|
lcd_clear();
|
||||||
menu_submenu(lcd_babystep_z);
|
menu_submenu(lcd_babystep_z);
|
||||||
|
Loading…
Reference in New Issue
Block a user