Explorar el Código

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 hace 7 años
padre
commit
a7334fd2a0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp Ver fichero

@@ -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…
Cancelar
Guardar