Changed infill color to amber

This commit is contained in:
Jaime van Kessel 2015-09-17 15:21:16 +02:00
parent 6aea81232d
commit c076e28e5f

View file

@ -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: