mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
reverse sorting in actions model
This commit is contained in:
parent
48167e23c7
commit
88cae86ee6
1 changed files with 1 additions and 1 deletions
|
|
@ -332,7 +332,7 @@ class ActionsModel:
|
|||
selection = self._prepare_selection(project_name, folder_id, task_id)
|
||||
output = []
|
||||
action_items = self._get_action_items(project_name)
|
||||
for identifier, action in sorted(self._get_action_objects().items()):
|
||||
for identifier, action in self._get_action_objects().items():
|
||||
if not action.is_compatible(selection):
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue