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-20 13:36:06 +0300
commiteb9912b924613484ca55de0dc3dfc99508af2d64 (patch)
tree32876df2211b68c2050863a25ed77a4053aa1621 /plugins/PostProcessingPlugin
parente961c6271e702280d485a2b3d0b98664832eaa6a (diff)
'M220' doesn't take a 'T' parameter in any format.
Diffstat (limited to 'plugins/PostProcessingPlugin')
-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: