mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 22:35:03 -06:00
Take minimum of all build volume temperature values
According to the Materials and Processing team here, this is better because it guarantees that the coldest of your materials won't sag. Contributes to issue CURA-6514.
This commit is contained in:
parent
36ddf2f018
commit
2e93948c84
1 changed files with 2 additions and 2 deletions
|
@ -2062,8 +2062,8 @@
|
|||
"description": "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted.",
|
||||
"unit": "°C",
|
||||
"type": "float",
|
||||
"default_value": 0,
|
||||
"resolve": "max(extruderValues('build_volume_temperature'))",
|
||||
"default_value": 35,
|
||||
"resolve": "min(extruderValues('build_volume_temperature'))",
|
||||
"minimum_value": "-273.15",
|
||||
"minimum_value_warning": "0",
|
||||
"maximum_value_warning": "285",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue