From 15706b7696e757255337627839af443424bfda47 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 6 May 2019 10:26:53 +0200 Subject: [PATCH] Fix colour of prime tower --- plugins/GCodeReader/FlavorParser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py index 4c88e5c953..4c73a3b9a2 100644 --- a/plugins/GCodeReader/FlavorParser.py +++ b/plugins/GCodeReader/FlavorParser.py @@ -370,6 +370,8 @@ class FlavorParser: self._layer_type = LayerPolygon.InfillType elif type == "SUPPORT-INTERFACE": self._layer_type = LayerPolygon.SupportInterfaceType + elif type == "PRIME-TOWER": + self._layer_type = LayerPolygon.SkirtType else: Logger.log("w", "Encountered a unknown type (%s) while parsing g-code.", type)