From 251f247147eb43b6fb40a99c71067e3bc1eef6cc Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 25 Oct 2023 17:52:09 +0200 Subject: [PATCH] Update `platform_temperature` and `build_plane_temperature` CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 4aa8120b67..059dbd185d 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -167,7 +167,10 @@ class MakerbotWriter(MeshWriter): } material_bed_temperature = global_stack.getProperty("material_bed_temperature", "value") - meta["build_plane_temperature"] = material_bed_temperature + meta["platform_temperature"] = material_bed_temperature + + build_volume_temperature = global_stack.getProperty("build_volume_temperature", "value") + meta["build_plane_temperature"] = build_volume_temperature print_information = application.getPrintInformation()