From a1243421275da295542e05c6f21a2ad5d3dd708f Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 16 Aug 2021 11:15:30 +0200 Subject: [PATCH] Fix Pause at height issue Fixes #8575 Thanks to @EGOiST1991 for suggesting the fix! --- plugins/PostProcessingPlugin/scripts/PauseAtHeight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 5c28073fb1..e6ca36730a 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -491,7 +491,7 @@ class PauseAtHeight(Script): # Move the head back if current_z < 15: - prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + "\n" + prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + "\n" prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n" prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + " ; move back down to resume height\n" if retraction_amount != 0: