From ba80cdba67a9ae4d67bd5924a36dc5299dc0b333 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Thu, 9 Jul 2015 16:31:44 +0200 Subject: [PATCH] Write to the correct variable so bed temperature is properly updated Contributes to #82 --- plugins/USBPrinting/USBPrinterManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/USBPrinting/USBPrinterManager.py b/plugins/USBPrinting/USBPrinterManager.py index 0609869059..066ae585da 100644 --- a/plugins/USBPrinting/USBPrinterManager.py +++ b/plugins/USBPrinting/USBPrinterManager.py @@ -172,7 +172,7 @@ class USBPrinterManager(QObject, SignalEmitter, Extension): ## Callback for bed temperature change def onBedTemperature(self, serial_port,temperature): - self._bed_temperature = temperature + self._bed_temp = temperature self.pyqtBedTemperature.emit(temperature) ## Callback for error