From c076e28e5f5755ce924765aa1a95d2211ebf56d3 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 17 Sep 2015 15:21:16 +0200 Subject: [PATCH] Changed infill color to amber --- 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 597839ea39..6634867da2 100644 --- a/plugins/CuraEngineBackend/LayerData.py +++ b/plugins/CuraEngineBackend/LayerData.py @@ -217,7 +217,7 @@ class Polygon(): elif self._type == self.SkirtType: return Color(0.0, 1.0, 1.0, 1.0) elif self._type == self.InfillType: - return Color(1.0, 1.0, 0.0, 1.0) + return Color(1.0, 0.74, 0.0, 1.0) elif self._type == self.SupportInfillType: return Color(0.0, 1.0, 1.0, 1.0) else: