From 081ac97f9588f1c7afde7eab8fea10f046d90513 Mon Sep 17 00:00:00 2001 From: Daid Date: Sat, 7 Jul 2012 08:30:53 +0200 Subject: [PATCH] Fix for gcode preview, was showing very thin lines because of the new start code. --- Cura/util/gcodeInterpreter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cura/util/gcodeInterpreter.py b/Cura/util/gcodeInterpreter.py index ea7985f0..40f3f183 100644 --- a/Cura/util/gcodeInterpreter.py +++ b/Cura/util/gcodeInterpreter.py @@ -151,6 +151,8 @@ class gcode(object): if totalExtrusion > maxExtrusion: maxExtrusion = totalExtrusion if moveType == 'move' and oldPos.z != pos.z: + if oldPos.z > pos.z and abs(oldPos.z - pos.z) > 5.0 and pos.z < 1.0: + oldPos.z = 0.0 layerThickness = abs(oldPos.z - pos.z) if currentPath.type != moveType or currentPath.pathType != pathType: currentPath = gcodePath(moveType, pathType, layerThickness, currentPath.list[-1]) -- 2.30.2