mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Revert "Revert "Merge branch '4.7' of github.com:Ultimaker/Cura into 4.7""
This reverts commit 28f4d8513d
.
The original revert was to revert an accidental merge from master to 4.7. This now reverts the revert on Master, so that we still have those changes on Master.
This commit is contained in:
parent
a757dc7fa0
commit
9ea418c0a1
12 changed files with 278 additions and 143 deletions
|
@ -1101,7 +1101,7 @@ class ChangeAtZProcessor:
|
|||
|
||||
# if it's not a linear move, we don't care
|
||||
if linear_command is None:
|
||||
return
|
||||
return line
|
||||
|
||||
# get our linear move parameters
|
||||
feed_rate = linear_command.arguments["F"]
|
||||
|
@ -1120,7 +1120,8 @@ class ChangeAtZProcessor:
|
|||
new_line = self.processRetractFeedRate(extrude_length, feed_rate, new_line, x_coord, y_coord, z_coord)
|
||||
|
||||
# handle print speed adjustments
|
||||
new_line = self.processPrintSpeed(feed_rate, new_line)
|
||||
if extrude_length is not None: # Only for extrusion moves.
|
||||
new_line = self.processPrintSpeed(feed_rate, new_line)
|
||||
|
||||
# set our current extrude position
|
||||
self.lastE = extrude_length if extrude_length is not None else self.lastE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue