mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 01:45:56 +08:00
First start actions are now added to correct list
CURA-1385
This commit is contained in:
parent
5a1af3b1ea
commit
ae0e05182b
@ -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…
x
Reference in New Issue
Block a user