mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
First start actions are now added to correct list
CURA-1385
This commit is contained in:
parent
5a1af3b1ea
commit
ae0e05182b
1 changed files with 2 additions and 2 deletions
|
|
@ -43,9 +43,9 @@ class MachineActionManager:
|
|||
def addFirstStartAction(self, machine, action_key, index = None):
|
||||
if action_key in self._machine_actions:
|
||||
if machine in self._supported_actions and index is not None:
|
||||
self._supported_actions[machine].insert(index, self._machine_actions[action_key])
|
||||
self._first_start_actions[machine].insert(index, self._machine_actions[action_key])
|
||||
else:
|
||||
self._supported_actions[machine] = [self._machine_actions[action_key]]
|
||||
self._first_start_actions[machine] = [self._machine_actions[action_key]]
|
||||
else:
|
||||
Logger.log("W", "Unable to add %s to %s, as the action is not recognised", action_key, machine.getKey())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue