Преглед изворни кода

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 пре 5 година
родитељ
комит
3a87ff56f6
1 измењених фајлова са 1 додато и 1 уклоњено
  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);