mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Merge branch '15.10'
* 15.10: Properly clear stored layer data Render SupportInfillType so support is rendered correctly again. Fix issues with crash handler and log file creation on Windows Bump version Make the UMO upgrade selection page work properly Update preference dialog to the changed API Disable crash handler if debug mode is not enabled Prevent crashes when centering an object Also disable output device selection when main save button is disabled Fix name of Low Quality profile Fix stdout/stderr output location so we do not output to UM but to cura
This commit is contained in:
commit
ae3705514f
10 changed files with 70 additions and 29 deletions
|
@ -107,7 +107,7 @@ class Layer():
|
|||
def build(self, offset, vertices, colors, indices):
|
||||
result = offset
|
||||
for polygon in self._polygons:
|
||||
if polygon._type == Polygon.InfillType or polygon._type == Polygon.SupportInfillType or polygon.type == Polygon.MoveCombingType or polygon.type == Polygon.MoveRetractionType:
|
||||
if polygon._type == Polygon.InfillType or polygon.type == Polygon.MoveCombingType or polygon.type == Polygon.MoveRetractionType:
|
||||
continue
|
||||
|
||||
polygon.build(result, vertices, colors, indices)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue