Explorar el 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 hace 5 años
padre
commit
3a87ff56f6
Se han modificado 1 ficheros con 1 adiciones y 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);