mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-01 14:51:07 -07:00
Switching from dual extrusion to single extrusion machine is now possible again
CURA-3497
This commit is contained in:
parent
ab6240bd31
commit
f062322ebf
2 changed files with 16 additions and 11 deletions
|
|
@ -183,7 +183,10 @@ class PrintInformation(QObject):
|
|||
|
||||
def _onActiveMaterialChanged(self):
|
||||
if self._active_material_container:
|
||||
self._active_material_container.metaDataChanged.disconnect(self._onMaterialMetaDataChanged)
|
||||
try:
|
||||
self._active_material_container.metaDataChanged.disconnect(self._onMaterialMetaDataChanged)
|
||||
except TypeError:
|
||||
pass
|
||||
|
||||
active_material_id = Application.getInstance().getMachineManager().activeMaterialId
|
||||
active_material_containers = ContainerRegistry.getInstance().findInstanceContainers(id=active_material_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue