Skip to content

Commit 33cfed2

Browse files
alexbruynyalldawson
authored andcommittedMay 11, 2018
[processing] fix method signature
1 parent 1ba34dc commit 33cfed2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,5 @@ def setDefault(self, index):
110110
if item:
111111
item.setCheckState(Qt.Checked)
112112

113-
def setAllowMultiple(self):
114-
self.chkAllowMultiple.setChecked(True)
113+
def setAllowMultiple(self, allowMultiple):
114+
self.chkAllowMultiple.setChecked(allowMultiple)

0 commit comments

Comments
 (0)
Please sign in to comment.