diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-22 15:20:59 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-04-22 16:30:02 -0400 |
commit | 402110f65517ab357bd636907c8e8201059fda55 (patch) | |
tree | 1972c3c4d72dfd957824f04c67e2c8e05ff403c0 /klippy/gcode.py | |
parent | ff28f33967f069a85dc86098ecfc9d14feb71c8b (diff) | |
download | kutter-402110f65517ab357bd636907c8e8201059fda55.tar.gz kutter-402110f65517ab357bd636907c8e8201059fda55.tar.xz kutter-402110f65517ab357bd636907c8e8201059fda55.zip |
gcode_arcs: Fix Z moves and E moves
Fix Z moves so that the movement is spaced out among the arc movements.
Fix extrude moves when in absolute extrude mode.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/gcode.py')
-rw-r--r-- | klippy/gcode.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py index 7e861864..463cb521 100644 --- a/klippy/gcode.py +++ b/klippy/gcode.py @@ -140,7 +140,8 @@ class GCodeParser: 'speed_factor': self._get_gcode_speed_override(), 'speed': self._get_gcode_speed(), 'extrude_factor': self.extrude_factor, - 'abs_extrude': self.absolute_extrude, + 'absolute_coordinates': self.absolute_coord, + 'absolute_extrude': self.absolute_extrude, 'busy': busy, 'move_xpos': move_position[0], 'move_ypos': move_position[1], |