From 2e93948c846f595fb2d370af8e7207e7ddb33b41 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 13 May 2019 17:10:51 +0200 Subject: [PATCH] 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. --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 9691819e48..5efe3d0a5d 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -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",