mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Fix 'DiscoverUM3Action' required attention from user in flow. [CURA-6057]
This commit is contained in:
parent
d8f89d8330
commit
dc8524b90d
3 changed files with 12 additions and 1 deletions
|
@ -221,7 +221,7 @@ class WelcomePagesModel(ListModel):
|
|||
|
||||
definition_id = global_stack.definition.getId()
|
||||
first_start_actions = self._application.getMachineActionManager().getFirstStartActions(definition_id)
|
||||
return len(first_start_actions) > 0
|
||||
return len([action for action in first_start_actions if action.needsUserInteraction()]) > 0
|
||||
|
||||
def addPage(self) -> None:
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue