Browse Source

Added missing decorator
CURA-1385

Jaime van Kessel 8 years ago
parent
commit
35a8e7ca94
1 changed files with 1 additions and 0 deletions
  1. 1 0
      cura/MachineActionManager.py

+ 1 - 0
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]