Merge branch 'develop' into enhancement/OP-6021_Nuke-custom-write-nodes-scripts

This commit is contained in:
Jakub Ježek 2023-06-06 21:36:19 +02:00 committed by GitHub
commit 6eaf284ccc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -273,7 +273,7 @@ class ActionModel(QtGui.QStandardItemModel):
# Sort by order and name
return sorted(
compatible,
key=lambda action: (action.order, action.name)
key=lambda action: (action.order, lib.get_action_label(action))
)
def update_force_not_open_workfile_settings(self, is_checked, action_id):