Explorar o código

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
Yuri D'Elia %!s(int64=5) %!d(string=hai) anos
pai
achega
3a87ff56f6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Firmware/ultralcd.cpp

+ 1 - 1
Firmware/ultralcd.cpp

@@ -8258,7 +8258,7 @@ void menu_lcd_longpress_func(void)
         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();
         menu_submenu(lcd_babystep_z);