From f963ad50217896f71528dca8d9e63488979f4921 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 13 Apr 2016 13:46:10 +0200 Subject: [PATCH] Renamed _setBedTemperature to setTargetBedTemperature CURA-1339 --- cura/PrinterOutputDevice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py index d9f119bf83..6c8c409fb7 100644 --- a/cura/PrinterOutputDevice.py +++ b/cura/PrinterOutputDevice.py @@ -61,13 +61,13 @@ class PrinterOutputDevice(OutputDevice, QObject): # /sa _setBedTemperature @pyqtSlot(int) def setBedTemperature(self, temperature): - self._setBedTemperature(temperature) + self._setTargetBedTemperature(temperature) self._target_bed_temperature = temperature self.targetBedTemperatureChanged.emit() ## Set the bed temperature of the connected printer (if any). # /parameter temperature Temperature bed needs to go to (in deg celsius) - def _setBedTemperature(self, temperature): + def _setTargetBedTemperature(self, temperature): pass ## Set the (target) hotend temperature