From 4729bd1d0ffbbcd8c468a15899523f227af40cd6 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 23 Jun 2020 11:32:57 +0200 Subject: [PATCH] Remove unneeded check from deepcopy of settingoverride decorator CURA-7106 --- cura/Settings/SettingOverrideDecorator.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cura/Settings/SettingOverrideDecorator.py b/cura/Settings/SettingOverrideDecorator.py index c264d41a22..e57a5eb507 100644 --- a/cura/Settings/SettingOverrideDecorator.py +++ b/cura/Settings/SettingOverrideDecorator.py @@ -78,11 +78,6 @@ class SettingOverrideDecorator(SceneNodeDecorator): # Properly set the right extruder on the copy deep_copy.setActiveExtruder(self._extruder_stack) - # use value from the stack because there can be a delay in signal triggering and "_is_non_printing_mesh" - # has not been updated yet. - deep_copy._is_non_printing_mesh = self._evaluateIsNonPrintingMesh() - deep_copy._is_non_thumbnail_visible_mesh = self._evaluateIsNonThumbnailVisibleMesh() - return deep_copy def getActiveExtruder(self):