Browse Source

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 8 years ago
parent
commit
001bc14255
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      Marlin/ultralcd.cpp

+ 1
- 2
Marlin/ultralcd.cpp View File

1940
       }
1940
       }
1941
     }
1941
     }
1942
     MENU_BACK(MSG_MOVE_AXIS);
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
     MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
1944
     MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
1946
     MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
1945
     MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
1947
     END_MENU();
1946
     END_MENU();

Loading…
Cancel
Save