mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-18 07:36:04 +08:00
dont allow minimum speed of zero
Zero minimum speed results in infinite layer times, causing the speed factor to be NaN. CURA-10127
This commit is contained in:
parent
a1b9232f9d
commit
7e194d34b6
@ -4405,7 +4405,7 @@
|
|||||||
"unit": "mm/s",
|
"unit": "mm/s",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default_value": 10,
|
"default_value": 10,
|
||||||
"minimum_value": "0",
|
"minimum_value": "1",
|
||||||
"maximum_value_warning": "100",
|
"maximum_value_warning": "100",
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
"settable_per_extruder": true
|
"settable_per_extruder": true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user