Browse Source

Allow negative retract values in the LCD

This can already be done via G-Code, so adding the capability to the LCD should be straight forward.
Florian Heilmann 7 years ago
parent
commit
a7334fd2a0
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp View File

@@ -2162,7 +2162,7 @@ KeepDrawing:
2162 2162
       #endif
2163 2163
       MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate_mm_s, 1, 999);
2164 2164
       MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
2165
-      MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, 0, 100);
2165
+      MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, -100, 100);
2166 2166
       #if EXTRUDERS > 1
2167 2167
         MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, 0, 100);
2168 2168
       #endif

Loading…
Cancel
Save