Fix merge conflict

This commit is contained in:
ChrisTerBeke 2017-11-20 18:20:06 +01:00
commit 7556271d2b

View File

@ -166,8 +166,8 @@ class GCodeReader(MeshReader):
return line_width return line_width
def _gCode0(self, position, params, path): def _gCode0(self, position, params, path):
x, y, z, f, e = position x, y, z, f, e = position
if self._is_absolute_positioning: if self._is_absolute_positioning:
x = params.x if params.x is not None else x x = params.x if params.x is not None else x
y = params.y if params.y is not None else y y = params.y if params.y is not None else y