diff options
author | amblidex <47804843+amblidex@users.noreply.github.com> | 2019-03-08 12:11:47 -0700 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-03-08 14:11:47 -0500 |
commit | e2af1c1f2abc5153cfce753f12f4837015958a53 (patch) | |
tree | 925e3f031b9628015aed16bb8da1af2e10bce135 | |
parent | 1b1d3f15d8fc23b24ed8235aed1dc6326d947b1e (diff) | |
download | kutter-e2af1c1f2abc5153cfce753f12f4837015958a53.tar.gz kutter-e2af1c1f2abc5153cfce753f12f4837015958a53.tar.xz kutter-e2af1c1f2abc5153cfce753f12f4837015958a53.zip |
menu: Set input_max for moving toolhead in menu to same value for all move increments (#1372)
Signed-off-by: Frank Kang <amblidex@outlook.com>
-rw-r--r-- | klippy/extras/display/menu.cfg | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/klippy/extras/display/menu.cfg b/klippy/extras/display/menu.cfg index 5d40508a..1e9c12dc 100644 --- a/klippy/extras/display/menu.cfg +++ b/klippy/extras/display/menu.cfg @@ -252,8 +252,8 @@ type: input enable: !toolhead.is_printing name: "Move E:{0:+06.1f}" parameter: 0 -input_min: -250.0 -input_max: 250.0 +input_min: -50.0 +input_max: 50.0 input_step: 10.0 gcode: G1 E{0:.1f} F240 @@ -272,7 +272,7 @@ type: input name: "X:{0:05.1f} " parameter: toolhead.xpos input_min: 0 -input_max: 100.0 +input_max: 200.0 input_step: 1.0 gcode: G1 X{0:.1f} @@ -281,7 +281,7 @@ type: input name: "Y:{0:05.1f} " parameter: toolhead.ypos input_min: 0 -input_max: 100.0 +input_max: 200.0 input_step: 1.0 gcode: G1 Y{0:.1f} @@ -291,7 +291,7 @@ enable: !toolhead.is_printing name: "Move Z:{0:05.1f}" parameter: toolhead.zpos input_min: 0 -input_max: 100.0 +input_max: 200.0 input_step: 1.0 gcode: G1 Z{0:.1f} @@ -300,8 +300,8 @@ type: input enable: !toolhead.is_printing name: "Move E:{0:+06.1f}" parameter: 0 -input_min: -100.0 -input_max: 100.0 +input_min: -50.0 +input_max: 50.0 input_step: 1.0 gcode: G1 E{0:.1f} F240 @@ -320,7 +320,7 @@ type: input name: "X:{0:05.1f} " parameter: toolhead.xpos input_min: 0 -input_max: 50.0 +input_max: 200.0 input_step: 0.1 gcode: G1 X{0:.1f} @@ -329,7 +329,7 @@ type: input name: "Y:{0:05.1f} " parameter: toolhead.ypos input_min: 0 -input_max: 50.0 +input_max: 200.0 input_step: 0.1 gcode: G1 Y{0:.1f} @@ -339,7 +339,7 @@ enable: !toolhead.is_printing name: "Move Z:{0:05.1f}" parameter: toolhead.zpos input_min: 0 -input_max: 50.0 +input_max: 200.0 input_step: 0.1 gcode: G1 Z{0:.1f} |