From 001bc142557366fab8f1b4816da4cf01b52da680 Mon Sep 17 00:00:00 2001 From: Kai Date: Tue, 11 Apr 2017 18:39:26 +0200 Subject: [PATCH] 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 --- Marlin/ultralcd.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Marlin/ultralcd.cpp b/Marlin/ultralcd.cpp index 56121269a7..19dbc233de 100755 --- a/Marlin/ultralcd.cpp +++ b/Marlin/ultralcd.cpp @@ -1940,8 +1940,7 @@ void kill_screen(const char* lcd_msg) { } } MENU_BACK(MSG_MOVE_AXIS); - if (axis == X_AXIS || axis == Y_AXIS) - MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm); + MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm); MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm); MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm); END_MENU();