Removed comment. CURA-3390

This commit is contained in:
Jack Ha 2017-03-16 15:28:57 +01:00
parent 60c5112824
commit 6194ffa27b

View file

@ -151,7 +151,6 @@ class GCodeReader(MeshReader):
if z > self._previous_z and (z - self._previous_z < 1.5): if z > self._previous_z and (z - self._previous_z < 1.5):
self._current_layer_thickness = z - self._previous_z + 0.05 # allow a tiny overlap self._current_layer_thickness = z - self._previous_z + 0.05 # allow a tiny overlap
self._previous_z = z self._previous_z = z
Logger.log("d", "Layer thickness recalculated: %s" % self._current_layer_thickness)
else: else:
path.append([x, y, z, LayerPolygon.MoveCombingType]) path.append([x, y, z, LayerPolygon.MoveCombingType])