From 39a7f5a53d55ba356efb3ebbb1ec170378a93060 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Mon, 12 Mar 2018 16:37:35 +0100 Subject: [PATCH] CURA-4870 Update the configuration also when the type or the buildplate changed signal is emitted. --- cura/PrinterOutput/PrinterOutputModel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cura/PrinterOutput/PrinterOutputModel.py b/cura/PrinterOutput/PrinterOutputModel.py index 8d674c1c5f..3453eca608 100644 --- a/cura/PrinterOutput/PrinterOutputModel.py +++ b/cura/PrinterOutput/PrinterOutputModel.py @@ -46,6 +46,8 @@ class PrinterOutputModel(QObject): # Update the printer configuration every time any of the extruders changes its configuration for extruder in self._extruders: extruder.extruderConfigurationChanged.connect(self._updatePrinterConfiguration) + self.typeChanged.connect(self._updatePrinterConfiguration) + self.buildplateChanged.connect(self._updatePrinterConfiguration) self._camera = None