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:
authorJaime van Kessel <nallath@gmail.com>2020-10-21 17:52:39 +0300
committerRemco Burema <r.burema@ultimaker.com>2020-10-23 12:58:29 +0300
commit69b855f298d0e1ede5dcdf15d6a345298e8185ff (patch)
tree90c5e8014f7f9c1668fb1f4d2e9428ce7e4e4573
parentae9ab5745e688076d975d16d1caa240da092c04d (diff)
Ensure changeAtZ script sees speed 100 as default4.8-beta
The speed is asumed to be default at 100%. This is so much assumed that the g-code doesn't even put a m220 s100 command as the basis anymore CURA-7773
-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 0ffd9e290b..b4036f7ff2 100644
--- a/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py
+++ b/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py
@@ -1305,7 +1305,7 @@ class ChangeAtZProcessor:
self.targetLayer = None
self.targetZ = None
self.layerHeight = None
- self.lastValues = {}
+ self.lastValues = {"speed": 100}
self.linearRetraction = True
self.insideTargetLayer = False
self.targetValuesInjected = False