From 9e8d61aea225db999df34c2d59718f4e788d5173 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 14 Apr 2016 13:03:54 +0200 Subject: [PATCH] Added missing pyqtslot decorator CURA-1339 --- cura/PrinterOutputDevice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py index 794d77d48a..91eba34631 100644 --- a/cura/PrinterOutputDevice.py +++ b/cura/PrinterOutputDevice.py @@ -74,6 +74,7 @@ class PrinterOutputDevice(OutputDevice, QObject): ## Home the bed of the connected printer # This function is "final" (do not re-implement) + @pyqtSlot() def homeBed(self): self._homeBed()