mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 22:35:03 -06:00
Allow steps per mm to be float
You could have 333.333 steps per mm, for instance. Not common, but it's possible. Fixes #8889.
This commit is contained in:
parent
000d7e90f5
commit
bfe62514e2
1 changed files with 4 additions and 4 deletions
|
@ -652,7 +652,7 @@
|
|||
{
|
||||
"label": "Steps per Millimeter (X)",
|
||||
"description": "How many steps of the stepper motor will result in one millimeter of movement in the X direction.",
|
||||
"type": "int",
|
||||
"type": "float",
|
||||
"default_value": 50,
|
||||
"minimum_value": "0.0000001",
|
||||
"settable_per_mesh": false,
|
||||
|
@ -662,7 +662,7 @@
|
|||
{
|
||||
"label": "Steps per Millimeter (Y)",
|
||||
"description": "How many steps of the stepper motor will result in one millimeter of movement in the Y direction.",
|
||||
"type": "int",
|
||||
"type": "float",
|
||||
"default_value": 50,
|
||||
"minimum_value": "0.0000001",
|
||||
"settable_per_mesh": false,
|
||||
|
@ -672,7 +672,7 @@
|
|||
{
|
||||
"label": "Steps per Millimeter (Z)",
|
||||
"description": "How many steps of the stepper motor will result in one millimeter of movement in the Z direction.",
|
||||
"type": "int",
|
||||
"type": "float",
|
||||
"default_value": 50,
|
||||
"minimum_value": "0.0000001",
|
||||
"settable_per_mesh": false,
|
||||
|
@ -682,7 +682,7 @@
|
|||
{
|
||||
"label": "Steps per Millimeter (E)",
|
||||
"description": "How many steps of the stepper motors will result in one millimeter of extrusion.",
|
||||
"type": "int",
|
||||
"type": "float",
|
||||
"default_value": 1600,
|
||||
"minimum_value": "0.0000001",
|
||||
"settable_per_mesh": false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue