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:
Jakub Trllo 2022-11-01 16:47:38 +01:00 committed by GitHub
commit d9b4c3f2ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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))