Cluster monitor page now shows queue instead of added printers

CL-894
This commit is contained in:
Jaime van Kessel 2018-08-14 13:34:05 +02:00
parent d46c754616
commit 78ebdb13f4
9 changed files with 224 additions and 44 deletions

View file

@ -48,7 +48,7 @@ class ExtruderOutputModel(QObject):
@pyqtProperty(QObject, notify = extruderConfigurationChanged)
def activeMaterial(self) -> Optional["MaterialOutputModel"]:
return self._extruder_configuration.material
return self._extruder_configuration.activeMaterial
def updateActiveMaterial(self, material: Optional["MaterialOutputModel"]):
self._extruder_configuration.setMaterial(material)
@ -111,4 +111,4 @@ class ExtruderOutputModel(QObject):
@pyqtSlot()
def cancelPreheatHotend(self) -> None:
self._printer._controller.cancelPreheatHotend(self)
self._printer._controller.cancelPreheatHotend(self)