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
This commit is contained in:
Jaime van Kessel 2020-09-04 16:39:06 +02:00
parent 8ecdce3b26
commit c383fe9656
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -995,8 +995,7 @@ class MachineManager(QObject):
self.activeQualityGroupChanged.emit() self.activeQualityGroupChanged.emit()
# Update items in SettingExtruder # Update items in SettingExtruder
ExtruderManager.getInstance().extrudersChanged.emit(self._global_container_stack.getId()) 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 # Also trigger the build plate compatibility to update
self.activeMaterialChanged.emit() self.activeMaterialChanged.emit()
self.activeIntentChanged.emit() self.activeIntentChanged.emit()