mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
passed group checks order equality instead of comparison
This commit is contained in:
parent
4aa995cfe7
commit
0c1b37af82
1 changed files with 4 additions and 4 deletions
|
|
@ -771,10 +771,10 @@ class Window(QtWidgets.QDialog):
|
|||
|
||||
for group_item in self.plugin_model.group_items.values():
|
||||
# TODO check only plugins from the group
|
||||
if (
|
||||
group_item.publish_states & GroupStates.HasFinished
|
||||
or (order is not None and group_item.order >= order)
|
||||
):
|
||||
if group_item.publish_states & GroupStates.HasFinished:
|
||||
continue
|
||||
|
||||
if order != group_item.order:
|
||||
continue
|
||||
|
||||
if group_item.publish_states & GroupStates.HasError:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue