Skip to content

Commit 0fa1f04

Browse files
committedMar 20, 2018
[processing] Fix intersect always selected in Join by Location in modeler
Fixes #18489 (cherry-picked from e0255b3)
1 parent 94f6612 commit 0fa1f04

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎python/plugins/processing/gui/CheckboxesPanel.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,7 @@ def value(self):
107107
def setValue(self, value):
108108
if self._multiple:
109109
for (v, button) in self._buttons:
110-
if v in value:
111-
button.setChecked(True)
110+
button.setChecked(v in value)
112111
else:
113112
for v, button in self._buttons:
114-
if v == value:
115-
button.setChecked(True)
113+
button.setChecked(v == value)

0 commit comments

Comments
 (0)
Please sign in to comment.