From 40169809bcba2ba3c1eef7d4a0e0626172e63c82 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 10 Jul 2019 15:59:05 +0200 Subject: [PATCH] Set the default build plate temperature to 0 All third-party materials that didn't fill in a value for this build volume temperature will then default to 0 which causes the printer to go into a safe mode that doesn't melt the plastic or anything. Contributes to issue CURA-6652. --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 1b8bf51df4..f4c963c876 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -2063,7 +2063,7 @@ "description": "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted.", "unit": "°C", "type": "float", - "default_value": 35, + "default_value": 0, "resolve": "min(extruderValues('build_volume_temperature'))", "minimum_value": "-273.15", "minimum_value_warning": "0",