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-06 12:30:38 +0300
committerfieldOfView <aldo@fieldofview.com>2016-09-06 12:30:38 +0300
commitdc01cdbc882faee68b66fcdf924884e7bc95dfa1 (patch)
tree242c7fc1aa1df7ef2586ddb79fab0614dce09532 /cura/LayerPolygon.py
parenteb3cfd47cdab1bd9d5b6f03e6fdc7414c121ffdb (diff)
Fix displaying support interface in layerview
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 387a369aa3..d3da01e590 100644
--- a/cura/LayerPolygon.py
+++ b/cura/LayerPolygon.py
@@ -42,7 +42,7 @@ class LayerPolygon:
# When type is used as index returns true if type == LayerPolygon.InfillType or type == LayerPolygon.SkinType or type == LayerPolygon.SupportInfillType
# Should be generated in better way, not hardcoded.
- self._isInfillOrSkinTypeMap = numpy.array([0, 0, 0, 1, 0, 0, 1, 1, 0, 0], dtype=numpy.bool)
+ self._isInfillOrSkinTypeMap = numpy.array([0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1], dtype=numpy.bool)
self._build_cache_line_mesh_mask = None
self._build_cache_needed_points = None