mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Mush disallowed areas of all extruders together
The final result needs to be just a list. Contributes to issue CURA-2625.
This commit is contained in:
parent
edcf7320f0
commit
57f88ea048
1 changed files with 4 additions and 1 deletions
|
|
@ -434,7 +434,10 @@ class BuildVolume(SceneNode):
|
||||||
self._error_areas.extend(prime_tower_areas)
|
self._error_areas.extend(prime_tower_areas)
|
||||||
|
|
||||||
self._has_errors = len(self._error_areas) > 0
|
self._has_errors = len(self._error_areas) > 0
|
||||||
self._disallowed_areas = result_areas
|
|
||||||
|
self._disallowed_areas = []
|
||||||
|
for extruder_id in result_areas:
|
||||||
|
self._disallowed_areas.extend(result_areas[extruder_id])
|
||||||
|
|
||||||
## Computes the disallowed areas for objects that are printed with print
|
## Computes the disallowed areas for objects that are printed with print
|
||||||
# features.
|
# features.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue