CURA-3470 Return list instead of set for QVariantList

This commit is contained in:
Lipu Fei 2017-03-07 16:42:56 +01:00
parent 3047ff26f1
commit ba79f44783

View File

@ -105,7 +105,7 @@ class MachineActionManager(QObject):
if definition_id in self._supported_actions:
return list(self._supported_actions[definition_id])
else:
return set()
return list()
## Get all actions required by given machine
# \param definition_id The ID of the definition you want the required actions of