Use 2 extruders at all times for now

This commit is contained in:
ChrisTerBeke 2019-09-06 09:37:43 +02:00
parent ab3f627177
commit 549b724a4f

View file

@ -66,7 +66,7 @@ class ClusterPrinterStatus(BaseModel):
## Creates a new output model.
# \param controller - The controller of the model.
def createOutputModel(self, controller: PrinterOutputController) -> PrinterOutputModel:
model = PrinterOutputModel(controller, len(self.configuration), firmware_version = self.firmware_version)
model = PrinterOutputModel(controller, 2, firmware_version = self.firmware_version)
self.updateOutputModel(model)
return model