mirror of https://github.com/Desuuuu/klipper.git
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>
This commit is contained in:
parent
1b1d3f15d8
commit
e2af1c1f2a
|
@ -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}
|
||||
|
||||
|
|
Loading…
Reference in New Issue