Skip to content

Commit

Permalink
Ensure changeAtZ script sees speed 100 as default
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nallath authored and rburema committed Oct 23, 2020
1 parent ae9ab57 commit 69b855f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/PostProcessingPlugin/scripts/ChangeAtZ.py
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@ def reset(self):
self.targetLayer = None
self.targetZ = None
self.layerHeight = None
self.lastValues = {}
self.lastValues = {"speed": 100}
self.linearRetraction = True
self.insideTargetLayer = False
self.targetValuesInjected = False
Expand Down

0 comments on commit 69b855f

Please sign in to comment.