mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 12:47:49 -06:00
JSON fix: regular fan speed at layer inherit function was a bit off
This commit is contained in:
parent
4ef9c1a3e7
commit
a0838256e2
1 changed files with 1 additions and 1 deletions
|
@ -1121,7 +1121,7 @@
|
||||||
"min_value": "0",
|
"min_value": "0",
|
||||||
"max_value_warning": "100",
|
"max_value_warning": "100",
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"inherit_function": "int((parent_value - layer_height_0 + 0.001) / layer_height) + 1",
|
"inherit_function": "max(0, int(round((parent_value - layer_height_0) / layer_height, 0)))",
|
||||||
"global_only": "True"
|
"global_only": "True"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue