From 60568a30706ece60b945aa9635dafd5d191424af Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Mon, 5 Sep 2016 18:10:35 +0200 Subject: [PATCH] Fix size of LayerPolygon.__jump_map CURA-2049 --- cura/LayerPolygon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index 67b665eb4c..db9582c960 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -16,7 +16,7 @@ class LayerPolygon: MoveRetractionType = 9 SupportInterfaceType = 10 - __jump_map = numpy.logical_or( numpy.arange(10) == NoneType, numpy.arange(10) >= MoveCombingType ) + __jump_map = numpy.logical_or( numpy.arange(11) == NoneType, numpy.arange(11) >= MoveCombingType ) def __init__(self, mesh, extruder, line_types, data, line_widths): self._mesh = mesh