mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00
JSON fix: handle fuzzy skin min/max (CURA-1225)
This commit is contained in:
parent
4725b1b074
commit
feb1ed4c2e
1 changed files with 5 additions and 3 deletions
|
@ -1966,9 +1966,10 @@
|
|||
"type": "float",
|
||||
"unit": "1/mm",
|
||||
"default": 1.25,
|
||||
"min_value": "0",
|
||||
"min_value_warning": "0.1",
|
||||
"max_value_warning": "10",
|
||||
"max_value": "10000",
|
||||
"max_value": "2 / magic_fuzzy_skin_thickness",
|
||||
"visible": false,
|
||||
"enabled": "magic_fuzzy_skin_enabled",
|
||||
"children": {
|
||||
|
@ -1978,9 +1979,10 @@
|
|||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.8,
|
||||
"min_value_warning": "0.0001",
|
||||
"min_value": "magic_fuzzy_skin_thickness / 2",
|
||||
"min_value_warning": "0.1",
|
||||
"max_value_warning": "10",
|
||||
"inherit_function": "1/parent_value",
|
||||
"inherit_function": "10000 if parent_value == 0 else 1 / parent_value",
|
||||
"visible": false,
|
||||
"enabled": "magic_fuzzy_skin_enabled"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue