mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 05:15:52 +08:00
JSON fix: regular fan speed at layer inherit function was a bit off
This commit is contained in:
parent
4ef9c1a3e7
commit
a0838256e2
@ -1121,7 +1121,7 @@
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user