From ca0cd5069b781485088c10a1645676d7ea866e17 Mon Sep 17 00:00:00 2001 From: Joey de l'Arago Date: Wed, 7 Dec 2022 17:30:12 +0100 Subject: [PATCH] Remove leftover print statements CURA-9793 --- resources/qml/MachineSettings/ComboBoxWithOptions.qml | 1 - resources/qml/Widgets/SingleSettingComboBox.qml | 5 ----- 2 files changed, 6 deletions(-) diff --git a/resources/qml/MachineSettings/ComboBoxWithOptions.qml b/resources/qml/MachineSettings/ComboBoxWithOptions.qml index 2c82f07c6f..33ec84aaa2 100644 --- a/resources/qml/MachineSettings/ComboBoxWithOptions.qml +++ b/resources/qml/MachineSettings/ComboBoxWithOptions.qml @@ -140,7 +140,6 @@ UM.TooltipArea } else { - print("SETTING PROPERTY VALUE: " + newValue) propertyProvider.setPropertyValue("value", newValue) } forceUpdateOnChangeFunction() diff --git a/resources/qml/Widgets/SingleSettingComboBox.qml b/resources/qml/Widgets/SingleSettingComboBox.qml index 0055c00262..7b4381b9b5 100644 --- a/resources/qml/Widgets/SingleSettingComboBox.qml +++ b/resources/qml/Widgets/SingleSettingComboBox.qml @@ -44,10 +44,6 @@ Cura.ComboBox { if (propertyProvider.properties.value == key) { - print("propertyProvider.properties.value: " + propertyProvider.properties.value) - print("key: " + key) - print("currentIndex: " + currentIndex) - print("i: " + i) // The combobox is cleared after each value change so the currentIndex must be set each time. currentIndex = i } @@ -95,7 +91,6 @@ Cura.ComboBox { { if (updateAllExtruders) { - print("UPDATING ALL WITH VALUE: " + value) Cura.MachineManager.setSettingForAllExtruders(propertyProvider.key, "value", value) } else