From 6194ffa27ba2a39ccbb620fa3a422c50ab347677 Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Thu, 16 Mar 2017 15:28:57 +0100 Subject: [PATCH] Removed comment. CURA-3390 --- plugins/GCodeReader/GCodeReader.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/GCodeReader/GCodeReader.py b/plugins/GCodeReader/GCodeReader.py index 155fe231e2..15494f3712 100755 --- a/plugins/GCodeReader/GCodeReader.py +++ b/plugins/GCodeReader/GCodeReader.py @@ -151,7 +151,6 @@ class GCodeReader(MeshReader): 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._previous_z = z - Logger.log("d", "Layer thickness recalculated: %s" % self._current_layer_thickness) else: path.append([x, y, z, LayerPolygon.MoveCombingType])