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:
authorRemco Burema <r.burema@ultimaker.com>2020-10-20 13:36:06 +0300
committerRemco Burema <r.burema@ultimaker.com>2020-10-23 12:56:54 +0300
commitae9ab5745e688076d975d16d1caa240da092c04d (patch)
tree2828280a7f04615de25920b333a8940154f0646f
parent03dc8d00fe5c9bd802364650f315937f57f5009c (diff)
'M220' doesn't take a 'T' parameter in any format.
-rw-r--r--plugins/PostProcessingPlugin/scripts/ChangeAtZ.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py b/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py
index 78e0e71626..0ffd9e290b 100644
--- a/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py
+++ b/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py
@@ -889,7 +889,7 @@ class ChangeAtZProcessor:
# set feedrate percentage
if "speed" in values:
- codes.append("M220 S" + str(values["speed"]) + " T1")
+ codes.append("M220 S" + str(values["speed"]) + "")
# set print rate percentage
if "printspeed" in values: