Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] Fix intersect always selected in Join by Location in mod…
…eler

Fixes #18489

(cherry-picked from e0255b3)
  • Loading branch information
nyalldawson committed Mar 20, 2018
1 parent 94f6612 commit 0fa1f04
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions python/plugins/processing/gui/CheckboxesPanel.py
Expand Up @@ -107,9 +107,7 @@ def value(self):
def setValue(self, value):
if self._multiple:
for (v, button) in self._buttons:
if v in value:
button.setChecked(True)
button.setChecked(v in value)
else:
for v, button in self._buttons:
if v == value:
button.setChecked(True)
button.setChecked(v == value)

0 comments on commit 0fa1f04

Please sign in to comment.