mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06: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
1 changed files with 1 additions and 1 deletions
|
@ -4405,7 +4405,7 @@
|
|||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default_value": 10,
|
||||
"minimum_value": "0",
|
||||
"minimum_value": "1",
|
||||
"maximum_value_warning": "100",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue