Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2021-10-21 16:29:21 +0300
committerJaime van Kessel <nallath@gmail.com>2021-10-21 16:30:32 +0300
commit00a01569be334125645b7af62fb89a9de3b1dd92 (patch)
treef09087fc35e29f4d62b27448a674f753aac50d59
parent1f6e1942d775d47dd48be4fd83c5346271827a5e (diff)
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
-rw-r--r--plugins/PostProcessingPlugin/scripts/PauseAtHeight.py4
1 files 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.