mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-09-13 16:53:13 +08:00
Fixed global error keys always overriding the extruder error keys
CURA-2481
This commit is contained in:
parent
312bd2a963
commit
c007c1fc4c
@ -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…
x
Reference in New Issue
Block a user