Просмотр исходного кода

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
Jaime van Kessel 4 лет назад
Родитель
Сommit
c383fe9656
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      cura/Settings/MachineManager.py

+ 1 - 2
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()