From aac269f82a47de79c745c81c2aaeed891b42e5ca Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Tue, 6 Oct 2015 12:04:58 +0200 Subject: [PATCH] Render SupportInfillType so support is rendered correctly again. Fixes #445 --- plugins/CuraEngineBackend/LayerData.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CuraEngineBackend/LayerData.py b/plugins/CuraEngineBackend/LayerData.py index 6634867da2..79c4477440 100644 --- a/plugins/CuraEngineBackend/LayerData.py +++ b/plugins/CuraEngineBackend/LayerData.py @@ -107,7 +107,7 @@ class Layer(): def build(self, offset, vertices, colors, indices): result = offset for polygon in self._polygons: - if polygon._type == Polygon.InfillType or polygon._type == Polygon.SupportInfillType: + if polygon._type == Polygon.InfillType: continue polygon.build(result, vertices, colors, indices)