We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f6612 commit 0fa1f04Copy full SHA for 0fa1f04
python/plugins/processing/gui/CheckboxesPanel.py
@@ -107,9 +107,7 @@ def value(self):
107
def setValue(self, value):
108
if self._multiple:
109
for (v, button) in self._buttons:
110
- if v in value:
111
- button.setChecked(True)
+ button.setChecked(v in value)
112
else:
113
for v, button in self._buttons:
114
- if v == value:
115
+ button.setChecked(v == value)
0 commit comments