From 94d3309a35dd1e4d6fa1302a086850cc77dea06b Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 18 Apr 2016 11:33:43 +0200 Subject: [PATCH] Removed duplicate bedTemperature declaration CURA-1339 --- cura/PrinterOutputDevice.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py index fb4a851676..5509ae1b8c 100644 --- a/cura/PrinterOutputDevice.py +++ b/cura/PrinterOutputDevice.py @@ -100,11 +100,6 @@ class PrinterOutputDevice(OutputDevice, QObject): self._bed_temperature = temperature self.bedTemperatureChanged.emit() - ## Get the bed temperature if connected printer (if any) - @pyqtProperty(int, notify = bedTemperatureChanged) - def bedTemperature(self): - return self._bed_temperature - ## Get the target bed temperature if connected printer (if any) @pyqtProperty(int, notify = targetBedTemperatureChanged) def targetBedTemperature(self):