mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Remove old 'newline' solution. Will be fixed in the next commit(s).
In retrospect, using ';' for the newline seperation was a bit daft, given that comments also start with that. done as part of CURA-9822
This commit is contained in:
parent
d0c7a48b47
commit
883a3039e5
1 changed files with 2 additions and 2 deletions
|
@ -477,14 +477,14 @@ class PauseAtHeight(Script):
|
||||||
|
|
||||||
# Set a custom GCODE section before pause
|
# Set a custom GCODE section before pause
|
||||||
if gcode_before:
|
if gcode_before:
|
||||||
prepend_gcode += gcode_before.replace(";","\n") + "\n"
|
prepend_gcode += gcode_before + "\n"
|
||||||
|
|
||||||
# Wait till the user continues printing
|
# Wait till the user continues printing
|
||||||
prepend_gcode += pause_command + " ; Do the actual pause\n"
|
prepend_gcode += pause_command + " ; Do the actual pause\n"
|
||||||
|
|
||||||
# Set a custom GCODE section after pause
|
# Set a custom GCODE section after pause
|
||||||
if gcode_after:
|
if gcode_after:
|
||||||
prepend_gcode += gcode_after.replace(";","\n") + "\n"
|
prepend_gcode += gcode_after + "\n"
|
||||||
|
|
||||||
if pause_method == "repetier":
|
if pause_method == "repetier":
|
||||||
#Push the filament back,
|
#Push the filament back,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue