Minor spacing fix

This commit is contained in:
Scott Lahteine
2019-01-19 21:50:33 -06:00
parent c2cf8ffa82
commit 0495fcd475
4 changed files with 9 additions and 12 deletions

View File

@ -248,12 +248,9 @@ void _menu_move_distance(const AxisEnum axis, const screenFunc_t func, const int
START_MENU();
if (LCD_HEIGHT >= 4) {
switch (axis) {
case X_AXIS:
STATIC_ITEM(MSG_MOVE_X, true, true); break;
case Y_AXIS:
STATIC_ITEM(MSG_MOVE_Y, true, true); break;
case Z_AXIS:
STATIC_ITEM(MSG_MOVE_Z, true, true); break;
case X_AXIS: STATIC_ITEM(MSG_MOVE_X, true, true); break;
case Y_AXIS: STATIC_ITEM(MSG_MOVE_Y, true, true); break;
case Z_AXIS: STATIC_ITEM(MSG_MOVE_Z, true, true); break;
default:
#if ENABLED(MANUAL_E_MOVES_RELATIVE)
manual_move_e_origin = current_position[E_AXIS];