From 0faa7f4abb56190466343821626fbf5603cbe061 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Thu, 4 Aug 2016 15:49:07 +0200 Subject: [PATCH] Fix error in PrinterOutputDevice.acceptsCommands CURA-1851 --- cura/PrinterOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py index 0fac851aba..153e5f7c42 100644 --- a/cura/PrinterOutputDevice.py +++ b/cura/PrinterOutputDevice.py @@ -118,7 +118,7 @@ class PrinterOutputDevice(QObject, OutputDevice): self._error_text = error_text self.errorTextChanged.emit() - @pyqtProperty(str, notify = acceptsCommandsChanged) + @pyqtProperty(bool, notify = acceptsCommandsChanged) def acceptsCommands(self): return self._accepts_commands