Fix pause at height that uses new latest temperature CURA-5491

This commit is contained in:
Jack Ha 2018-07-02 15:13:44 +02:00
parent 0692192d58
commit 17c4b65453

View file

@ -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: