mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Fix Pause at height issue
Fixes #8575 Thanks to @EGOiST1991 for suggesting the fix!
This commit is contained in:
parent
3dec4e228b
commit
a124342127
1 changed files with 1 additions and 1 deletions
|
@ -491,7 +491,7 @@ class PauseAtHeight(Script):
|
||||||
|
|
||||||
# Move the head back
|
# Move the head back
|
||||||
if current_z < 15:
|
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, 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"
|
prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + " ; move back down to resume height\n"
|
||||||
if retraction_amount != 0:
|
if retraction_amount != 0:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue