Commit 06e6e9fa authored by Guillaume Seguin's avatar Guillaume Seguin

Correctly save current position in _preprocess_lines

parent cf37571a
...@@ -254,6 +254,9 @@ class GCode(object): ...@@ -254,6 +254,9 @@ class GCode(object):
self.relative = relative self.relative = relative
self.relative_e = relative_e self.relative_e = relative_e
self.current_tool = current_tool self.current_tool = current_tool
self.current_x = current_x
self.current_y = current_y
self.current_z = current_z
self.offset_x = offset_x self.offset_x = offset_x
self.offset_y = offset_y self.offset_y = offset_y
self.offset_z = offset_z self.offset_z = offset_z
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment