From 17c4b6545328f16e6e735ec5c9008799399da712 Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Mon, 2 Jul 2018 15:13:44 +0200 Subject: [PATCH] Fix pause at height that uses new latest temperature CURA-5491 --- plugins/PostProcessingPlugin/scripts/PauseAtHeight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 59e70cea92..52ecfd03ad 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -272,7 +272,7 @@ class PauseAtHeight(Script): prepend_gcode += self.putValue(M=0) + ";Do the actual pause\n" # Set extruder resume temperature - prepend_gcode += self.putValue(M = 109, S = int(target_temperature.get(current_t, default = 0))) + "; resume temperature\n" + prepend_gcode += self.putValue(M = 109, S = int(target_temperature.get(current_t, 0))) + "; resume temperature\n" # Push the filament back, if retraction_amount != 0: