Added missing decorator

CURA-1385
This commit is contained in:
Jaime van Kessel 2016-06-23 11:41:13 +02:00
parent d499d59d97
commit 35a8e7ca94

View file

@ -118,6 +118,7 @@ class MachineActionManager(QObject):
# action multiple times). # action multiple times).
# \param definition_id The ID of the definition that you want to get the "on added" actions for. # \param definition_id The ID of the definition that you want to get the "on added" actions for.
# \returns List of actions. # \returns List of actions.
@pyqtSlot(str, result="QVariantList")
def getFirstStartActions(self, definition_id): def getFirstStartActions(self, definition_id):
if definition_id in self._first_start_actions: if definition_id in self._first_start_actions:
return self._first_start_actions[definition_id] return self._first_start_actions[definition_id]