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:
authorfieldOfView <aldo@fieldofview.com>2016-09-05 19:10:35 +0300
committerfieldOfView <aldo@fieldofview.com>2016-09-05 19:10:35 +0300
commit60568a30706ece60b945aa9635dafd5d191424af (patch)
tree6d04174eb20b83e34124237e86bf07815cd7965e /cura/LayerPolygon.py
parentb7605aecc2372ab712c538d5c97774258105f7cb (diff)
Fix size of LayerPolygon.__jump_map
CURA-2049
Diffstat (limited to 'cura/LayerPolygon.py')
-rw-r--r--cura/LayerPolygon.py2
1 files changed, 1 insertions, 1 deletions
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