From c383fe965664523311d75ce61f4d5fef0a836e8e Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 4 Sep 2020 16:39:06 +0200 Subject: [PATCH] Don't force an update when disabling an extruder All the settings that are changed get a notification from the settingRelation. There should be no need to re-fire all of those settings again! Contributes to #8250 --- cura/Settings/MachineManager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 687647c8e7..3293b77103 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -995,8 +995,7 @@ class MachineManager(QObject): self.activeQualityGroupChanged.emit() # Update items in SettingExtruder ExtruderManager.getInstance().extrudersChanged.emit(self._global_container_stack.getId()) - # Make sure the front end reflects changes - self.forceUpdateAllSettings() + # Also trigger the build plate compatibility to update self.activeMaterialChanged.emit() self.activeIntentChanged.emit()