mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-07 23:27:48 -07:00
type correction for minimum value and maximum value
Setting type is float, so the min/maximum_value should also have a float value rather than a string
This commit is contained in:
parent
4a9fcd1d4e
commit
326a2f911d
1 changed files with 3 additions and 3 deletions
|
|
@ -491,8 +491,8 @@
|
|||
"label": "Print Time Estimation Factor",
|
||||
"description": "Multiplier for adjusting print time estimates. 100% shows original estimate. Higher values indicate longer actual print times.",
|
||||
"default_value": 100,
|
||||
"minimum_value": "1",
|
||||
"maximum_value": "1000",
|
||||
"minimum_value": 1,
|
||||
"maximum_value": 1000,
|
||||
"type": "float",
|
||||
"unit": "%",
|
||||
"settable_per_mesh": false,
|
||||
|
|
@ -9616,4 +9616,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue