From 71d015eeec1d86cb23ea72e4b95f52e90a7e4cf0 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Mon, 7 Nov 2016 15:17:32 +0100 Subject: [PATCH] JSON fix: no initial layer temperature commands for the UM2 family (CURA-2781, CURA-2736) --- resources/definitions/ultimaker2.def.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index c26a3a8856..be04b0b5a7 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -89,9 +89,15 @@ "material_print_temperature": { "enabled": "not (material_flow_dependent_temperature) and machine_gcode_flavor != \"UltiGCode\"" }, + "material_print_temperature_layer_0": { + "enabled": "machine_gcode_flavor != \"UltiGCode\"" + }, "material_bed_temperature": { "enabled": "machine_heated_bed and machine_gcode_flavor != \"UltiGCode\"" }, + "material_bed_temperature_layer_0": { + "enabled": "machine_heated_bed and machine_gcode_flavor != \"UltiGCode\"" + }, "machine_max_feedrate_x": { "default_value": 300 },