From e17eda9a3382d0ebcb35477f1324a6241405f881 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 22 Nov 2016 15:25:54 +0100 Subject: [PATCH] Removed debug prints CURA-2860 --- cura/Settings/SettingInheritanceManager.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 6e8c13640c..4d1e60a739 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -168,16 +168,12 @@ class SettingInheritanceManager(QObject): if value is not None: # If a setting doesn't use any keys, it won't change it's value, so treat it as if it's a fixed value has_setting_function = isinstance(value, UM.Settings.SettingFunction) and len(value.getUsedSettingKeys()) > 0 - if key == "prime_tower_size": - print(container.getId()) if has_setting_function is False: has_non_function_value = True continue if has_setting_function: break # There is a setting function somewhere, stop looking deeper. - if key == "prime_tower_size": - print("YAY", has_setting_function, has_non_function_value) return has_setting_function and has_non_function_value def _update(self):