Skip to content

Commit 2e6ebb0

Browse files
volayanyalldawson
authored andcommitted
[processing] fixed update of MultipleInputPanel after alg is run
Fixes #20670 (cherry picked from commit e546129)
1 parent 5bd63c7 commit 2e6ebb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/MultipleInputPanel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def updateForOptions(self, options):
8383
selectedoptions = []
8484
selected = [self.options[i] if isinstance(i, int) else i for i in self.selectedoptions]
8585
for sel in selected:
86-
if isinstance(sel, int):
86+
if not isinstance(sel, int):
8787
try:
8888
idx = options.index(sel)
8989
selectedoptions.append(idx)

0 commit comments

Comments
 (0)