We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bd63c7 commit 2e6ebb0Copy full SHA for 2e6ebb0
python/plugins/processing/gui/MultipleInputPanel.py
@@ -83,7 +83,7 @@ def updateForOptions(self, options):
83
selectedoptions = []
84
selected = [self.options[i] if isinstance(i, int) else i for i in self.selectedoptions]
85
for sel in selected:
86
- if isinstance(sel, int):
+ if not isinstance(sel, int):
87
try:
88
idx = options.index(sel)
89
selectedoptions.append(idx)
0 commit comments