Commit d5ae027d authored by Guillaume Seguin's avatar Guillaume Seguin

Simplify some logic in gcview

parent 9a2b023c
......@@ -281,9 +281,8 @@ class GcodeModel(Model):
for gline in layer:
if not gline.is_move:
continue
if gline.x is not None \
or gline.y is not None \
or gline.z is not None:
if gline.x is None and gline.y is None and gline.z is None:
continue
has_movement = True
current_pos = (gline.current_x, gline.current_y, gline.current_z)
if not gline.extruding:
......@@ -521,9 +520,8 @@ class GcodeModelLight(Model):
for gline in layer:
if not gline.is_move:
continue
if gline.x is not None \
or gline.y is not None \
or gline.z is not None:
if gline.x is None and gline.y is None and gline.z is None:
continue
has_movement = True
vertex_list.append(prev_pos)
current_pos = (gline.current_x, gline.current_y, gline.current_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