From 0c09df71d9b69dde5bdbcdacdad19411c2f260d1 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 14 Apr 2016 11:09:30 +0200 Subject: [PATCH] wizard now sets Target temperature CURA-1339 --- plugins/USBPrinting/USBPrinterManager.py | 2 +- resources/qml/WizardPages/UltimakerCheckup.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/USBPrinting/USBPrinterManager.py b/plugins/USBPrinting/USBPrinterManager.py index 6e1ef07c0d..ced91982ea 100644 --- a/plugins/USBPrinting/USBPrinterManager.py +++ b/plugins/USBPrinting/USBPrinterManager.py @@ -204,7 +204,7 @@ class USBPrinterManager(QObject, SignalEmitter, OutputDevicePlugin, Extension): self.getOutputDeviceManager().removeOutputDevice(serial_port) self.printerConnectionStateChanged.emit() except KeyError: - pass # no output device by this device_id found in connection list. + pass # no output device by this device_id found in connection list. @pyqtProperty(QObject , notify = printerConnectionStateChanged) diff --git a/resources/qml/WizardPages/UltimakerCheckup.qml b/resources/qml/WizardPages/UltimakerCheckup.qml index 80024545c9..d59c8be6bd 100644 --- a/resources/qml/WizardPages/UltimakerCheckup.qml +++ b/resources/qml/WizardPages/UltimakerCheckup.qml @@ -239,7 +239,7 @@ Item if(printer_connection != null) { nozzleTempStatus.text = catalog.i18nc("@info:progress","Checking") - printer_connection.setHotendTemperature(0, 190) + printer_connection.setTargetHotendTemperature(0, 190) wizardPage.extruder_target_temp = 190 } } @@ -295,7 +295,7 @@ Item if(printer_connection != null) { bedTempStatus.text = catalog.i18nc("@info:progress","Checking") - printer_connection.setBedTemperature(60) + printer_connection.setTargetBedTemperature(60) wizardPage.bed_target_temp = 60 } }