Browse Source

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
Jaime van Kessel 3 years ago
parent
commit
bf2b42b0b8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/PostProcessingPlugin/scripts/PauseAtHeight.py

+ 2 - 2
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.