diff --git a/cura/Settings/GlobalStack.py b/cura/Settings/GlobalStack.py index 3ec73972dd..fed049126e 100755 --- a/cura/Settings/GlobalStack.py +++ b/cura/Settings/GlobalStack.py @@ -45,6 +45,7 @@ class GlobalStack(CuraContainerStack): # Since the metadatachanged is defined in container stack, we can't use it here as a notifier for pyqt # properties. So we need to tie them together like this. self.metaDataChanged.connect(self.configuredConnectionTypesChanged) + self.metaDataChanged.connect(self.networkGroupNameChanged) extrudersChanged = pyqtSignal() configuredConnectionTypesChanged = pyqtSignal() diff --git a/cura/Settings/SettingOverrideDecorator.py b/cura/Settings/SettingOverrideDecorator.py index d230953f9c..d1f85d0b30 100644 --- a/cura/Settings/SettingOverrideDecorator.py +++ b/cura/Settings/SettingOverrideDecorator.py @@ -120,7 +120,6 @@ class SettingOverrideDecorator(SceneNodeDecorator): changed = False if self._is_non_printing_mesh != new_is_non_printing_mesh: self._is_non_printing_mesh = new_is_non_printing_mesh - self._node.setCalculateBoundingBox(not self._is_non_printing_mesh) changed = True if self._is_non_thumbnail_visible_mesh != new_is_non_thumbnail_visible_mesh: changed = True