mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix status names filter
This commit is contained in:
parent
de15350fe6
commit
de6c4c4342
1 changed files with 3 additions and 1 deletions
|
|
@ -185,7 +185,9 @@ class VersionDelegate(QtWidgets.QStyledItemDelegate):
|
|||
widget.set_tasks_filter(task_ids)
|
||||
|
||||
def set_statuses_filter(self, status_names):
|
||||
self._statuses_filter = set(status_names)
|
||||
if status_names is not None:
|
||||
status_names = set(status_names)
|
||||
self._statuses_filter = status_names
|
||||
for widget in self._editor_by_id.values():
|
||||
widget.set_statuses_filter(status_names)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue