mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #4053 from pypeclub/bugfix/OP-4054_Loader-mutliselection-loading-not-working-on-matching-representation
Loader: Fix comparison of repre name
This commit is contained in:
commit
d9b4c3f2ef
1 changed files with 1 additions and 1 deletions
|
|
@ -515,7 +515,7 @@ class SubsetWidget(QtWidgets.QWidget):
|
|||
if not one_item_selected:
|
||||
# Filter loaders from first subset by intersected combinations
|
||||
for repre, loader in first_loaders:
|
||||
if (repre["name"], loader) not in found_combinations:
|
||||
if (repre["name"].lower(), loader) not in found_combinations:
|
||||
continue
|
||||
|
||||
loaders.append((repre, loader))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue