From 35a8e7ca943b9b855931ccfbe440ce29ec7548bc Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 23 Jun 2016 11:41:13 +0200 Subject: [PATCH] Added missing decorator CURA-1385 --- cura/MachineActionManager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/MachineActionManager.py b/cura/MachineActionManager.py index b022553b59..b50bb95e7f 100644 --- a/cura/MachineActionManager.py +++ b/cura/MachineActionManager.py @@ -118,6 +118,7 @@ class MachineActionManager(QObject): # action multiple times). # \param definition_id The ID of the definition that you want to get the "on added" actions for. # \returns List of actions. + @pyqtSlot(str, result="QVariantList") def getFirstStartActions(self, definition_id): if definition_id in self._first_start_actions: return self._first_start_actions[definition_id]