Skip to content

Commit

Permalink
[processing] fixed update of MultipleInputPanel after alg is run
Browse files Browse the repository at this point in the history
Fixes #20670
  • Loading branch information
volaya committed Nov 30, 2018
1 parent 3a66b92 commit e546129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/MultipleInputPanel.py
Expand Up @@ -83,7 +83,7 @@ def updateForOptions(self, options):
selectedoptions = []
selected = [self.options[i] if isinstance(i, int) else i for i in self.selectedoptions]
for sel in selected:
if isinstance(sel, int):
if not isinstance(sel, int):
try:
idx = options.index(sel)
selectedoptions.append(idx)
Expand Down

1 comment on commit e546129

@elpaso
Copy link
Contributor

@elpaso elpaso commented on e546129 Nov 30, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@volaya thanks! Does this require backport?

Please sign in to comment.