Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Prado Gesto <d.pradogesto@ultimaker.com>2019-05-06 15:33:24 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2019-05-06 15:33:24 +0300
commit11e86512cb08bb4e9f16a9b7c743924e41930425 (patch)
tree4a58f03d20580f075699222501ff790d4856843d /plugins/GCodeReader
parentc9e7f3a245898ce25f46f8ff5c5839b1c9d12d9b (diff)
Include the prime tower to the time calculations
Contributes to CURA-6509.
Diffstat (limited to 'plugins/GCodeReader')
-rw-r--r--plugins/GCodeReader/FlavorParser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py
index 4c73a3b9a2..12bed210d2 100644
--- a/plugins/GCodeReader/FlavorParser.py
+++ b/plugins/GCodeReader/FlavorParser.py
@@ -371,7 +371,7 @@ class FlavorParser:
elif type == "SUPPORT-INTERFACE":
self._layer_type = LayerPolygon.SupportInterfaceType
elif type == "PRIME-TOWER":
- self._layer_type = LayerPolygon.SkirtType
+ self._layer_type = LayerPolygon.PrimeTowerType
else:
Logger.log("w", "Encountered a unknown type (%s) while parsing g-code.", type)