From 00a01569be334125645b7af62fb89a9de3b1dd92 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 21 Oct 2021 15:29:21 +0200 Subject: Add clarifying comment to pause at height It was a bit confusing what was happening, so i've added an extra comment to clarify what was going on. CURA-7292 --- plugins/PostProcessingPlugin/scripts/PauseAtHeight.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 9db59c0876..a9fd602dab 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -458,7 +458,7 @@ class PauseAtHeight(Script): # Optionally extrude material if extrude_amount != 0: - prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = 200) + "\n" + prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = 200) + "; Extra extrude after the unpause\n" prepend_gcode += self.putValue("@info wait for cleaning nozzle from previous filament") + "\n" prepend_gcode += self.putValue("@pause remove the waste filament from parking area and press continue printing") + "\n" @@ -495,7 +495,7 @@ class PauseAtHeight(Script): # Optionally extrude material if extrude_amount != 0: - prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = extrude_speed * 60) + "\n" + prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = extrude_speed * 60) + "; Extra extrude after the unpause\n" # and retract again, the properly primes the nozzle # when changing filament. -- cgit v1.2.3