Merge pull request #1759 from wavexx/enhanced_longpress
Default to "Live Adjust Z" when longpressing during a print (closes #1604)
This commit is contained in:
commit
60de313b8a
@ -8523,8 +8523,23 @@ uint8_t get_message_level()
|
||||
|
||||
void menu_lcd_longpress_func(void)
|
||||
{
|
||||
if (homing_flag || mesh_bed_leveling_flag || menu_menu == lcd_babystep_z || menu_menu == lcd_move_z)
|
||||
{
|
||||
// disable longpress during re-entry, while homing or calibration
|
||||
lcd_quick_feedback();
|
||||
return;
|
||||
}
|
||||
|
||||
if (current_position[Z_AXIS] < Z_HEIGHT_HIDE_LIVE_ADJUST_MENU && (moves_planned() || IS_SD_PRINTING || is_usb_printing ))
|
||||
{
|
||||
lcd_clear();
|
||||
menu_submenu(lcd_babystep_z);
|
||||
}
|
||||
else
|
||||
{
|
||||
move_menu_scale = 1.0;
|
||||
menu_submenu(lcd_move_z);
|
||||
}
|
||||
}
|
||||
|
||||
void menu_lcd_charsetup_func(void)
|
||||
|
Loading…
Reference in New Issue
Block a user