From a2089c6afd9f6a5201c7d4e19ead7ad591e6e9e8 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Thu, 11 Jan 2018 09:49:48 +0100 Subject: [PATCH] CURA-4461 Force set the active quality as it is when changing the buildplate type, so the values are updated --- cura/Settings/MachineManager.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 9f14dd471b..526a9ab1b0 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -870,6 +870,9 @@ class MachineManager(QObject): self.blurSettings.emit() self._new_buildplate_container = containers[0] # self._active_container_stack will be updated with a delay Logger.log("d", "Active buildplate changed to {active_variant_buildplate_id}".format(active_variant_buildplate_id = containers[0].getId())) + + # Force set the active quality as it is so the values are updated + self.setActiveQuality(self._active_container_stack.quality.getId()) else: Logger.log("w", "While trying to set the active buildplate, no buildplate was found to replace.")