Fix colour of prime tower

This commit is contained in:
Ghostkeeper 2019-05-06 10:26:53 +02:00
parent e363f1af94
commit 15706b7696
No known key found for this signature in database
GPG key ID: 86BEF881AE2CF276

View file

@ -370,6 +370,8 @@ class FlavorParser:
self._layer_type = LayerPolygon.InfillType self._layer_type = LayerPolygon.InfillType
elif type == "SUPPORT-INTERFACE": elif type == "SUPPORT-INTERFACE":
self._layer_type = LayerPolygon.SupportInterfaceType self._layer_type = LayerPolygon.SupportInterfaceType
elif type == "PRIME-TOWER":
self._layer_type = LayerPolygon.SkirtType
else: else:
Logger.log("w", "Encountered a unknown type (%s) while parsing g-code.", type) Logger.log("w", "Encountered a unknown type (%s) while parsing g-code.", type)