From 0275de7f77665644f1d7dc3710cee598b55e04ab Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Thu, 14 Feb 2019 11:46:41 +0100 Subject: [PATCH] Make sure to set the build plate so it's not empty Contributes to CL-1250 --- .../src/Cloud/Models/CloudClusterPrinterStatus.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/Models/CloudClusterPrinterStatus.py b/plugins/UM3NetworkPrinting/src/Cloud/Models/CloudClusterPrinterStatus.py index a8165ff69c..b641b48235 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/Models/CloudClusterPrinterStatus.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/Models/CloudClusterPrinterStatus.py @@ -55,6 +55,7 @@ class CloudClusterPrinterStatus(BaseCloudModel): # \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.updateBuildplateName(self.build_plate.type) self.updateOutputModel(model) return model