mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Fixed global error keys always overriding the extruder error keys
CURA-2481
This commit is contained in:
parent
312bd2a963
commit
c007c1fc4c
1 changed files with 1 additions and 2 deletions
|
@ -243,9 +243,8 @@ class CuraEngineBackend(Backend):
|
||||||
error_keys = []
|
error_keys = []
|
||||||
for extruder in extruders:
|
for extruder in extruders:
|
||||||
error_keys.extend(extruder.getErrorKeys())
|
error_keys.extend(extruder.getErrorKeys())
|
||||||
else:
|
if not extruders:
|
||||||
error_keys = self._global_container_stack.getErrorKeys()
|
error_keys = self._global_container_stack.getErrorKeys()
|
||||||
|
|
||||||
error_labels = set()
|
error_labels = set()
|
||||||
definition_container = self._global_container_stack.getBottom()
|
definition_container = self._global_container_stack.getBottom()
|
||||||
for key in error_keys:
|
for key in error_keys:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue