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:
authorfieldOfView <aldo@fieldofview.com>2021-08-16 13:19:49 +0300
committerfieldOfView <aldo@fieldofview.com>2021-08-16 13:19:49 +0300
commite4a04c186f89855749c75bc864cb740ef2da67f3 (patch)
tree738e2a230617f292081df4482f7646e6f6575288 /plugins
parent6c585deb1e8ee6af05040f66c32c3ae2cde7c84a (diff)
parentd5d163377b7de2b2dc33218e9955d934b658b319 (diff)
Merge branch 'master' into feature_pause_at_height_optional_parking
# Conflicts: # plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
Diffstat (limited to 'plugins')
-rw-r--r--plugins/PostProcessingPlugin/scripts/PauseAtHeight.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
index 5a738d9620..2e7aaaa596 100644
--- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
+++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
@@ -505,7 +505,7 @@ class PauseAtHeight(Script):
# Move the head back
if park_enabled:
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"