mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 12:15:59 +08:00
Make minimum layer height 1 micron
Previously the minimum layer height was 0.1 micron. This was rounded down to 0 microns in the engine, and then a check would cause the engine to return an error. 1 micron is the minimum that the engine can handle.
This commit is contained in:
parent
a660296768
commit
6c20d41863
@ -112,7 +112,7 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.1,
|
||||
"min_value": "0.0001",
|
||||
"min_value": "0.001",
|
||||
"min_value_warning": "0.04",
|
||||
"max_value_warning": "0.32"
|
||||
},
|
||||
@ -122,7 +122,7 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.3,
|
||||
"min_value": "0.0001",
|
||||
"min_value": "0.001",
|
||||
"min_value_warning": "0.04",
|
||||
"max_value_warning": "0.32",
|
||||
"visible": false
|
||||
|
Loading…
x
Reference in New Issue
Block a user