mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07: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
1 changed files with 2 additions and 2 deletions
|
|
@ -112,7 +112,7 @@
|
||||||
"unit": "mm",
|
"unit": "mm",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default": 0.1,
|
"default": 0.1,
|
||||||
"min_value": "0.0001",
|
"min_value": "0.001",
|
||||||
"min_value_warning": "0.04",
|
"min_value_warning": "0.04",
|
||||||
"max_value_warning": "0.32"
|
"max_value_warning": "0.32"
|
||||||
},
|
},
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"unit": "mm",
|
"unit": "mm",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default": 0.3,
|
"default": 0.3,
|
||||||
"min_value": "0.0001",
|
"min_value": "0.001",
|
||||||
"min_value_warning": "0.04",
|
"min_value_warning": "0.04",
|
||||||
"max_value_warning": "0.32",
|
"max_value_warning": "0.32",
|
||||||
"visible": false
|
"visible": false
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue