From aff28d821f8bcf53aa7f1559cbf3b77661cbbe40 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 11 May 2020 18:35:27 +0200 Subject: [PATCH] Also reset extrusion for Griffin printers The rest may not be necessary but the G92 is crucial if redo layer is activated. Contributes to issue CURA-7413. --- 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 8507565ef3..03cc2c31a7 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -362,8 +362,8 @@ class PauseAtHeight(Script): prepend_gcode += self.putValue(M = 82) + " ; switch back to absolute E values\n" - # reset extrude value to pre pause value - prepend_gcode += self.putValue(G = 92, E = current_e) + "\n" + # reset extrude value to pre pause value + prepend_gcode += self.putValue(G = 92, E = current_e) + "\n" layer = prepend_gcode + layer