Explorar el Código

Allow 10mm Movements for Z-Axis

I use the movement options via LCD quite often. Especially to get the nozzle out of the way. I see no reason, why the 10mm option is disabled for the Z-Axis, this is why i always delete this line when i compile a new version.
If this is unwanted, please just close this PR
Kai hace 8 años
padre
commit
001bc14255
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1
    2
      Marlin/ultralcd.cpp

+ 1
- 2
Marlin/ultralcd.cpp Ver fichero

@@ -1940,8 +1940,7 @@ void kill_screen(const char* lcd_msg) {
1940 1940
       }
1941 1941
     }
1942 1942
     MENU_BACK(MSG_MOVE_AXIS);
1943
-    if (axis == X_AXIS || axis == Y_AXIS)
1944
-      MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
1943
+    MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
1945 1944
     MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
1946 1945
     MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
1947 1946
     END_MENU();

Loading…
Cancelar
Guardar