Skip to content

Commit

Permalink
[processing] fix wrong getter
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Jan 28, 2018
1 parent 3ca5d72 commit 550c74e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/wrappers.py
Expand Up @@ -832,7 +832,7 @@ def value(self):
except:
return self.combo.currentText()
elif self.dialogType == DIALOG_BATCH:
return self.widget.getText()
return self.widget.value()
else:
def validator(v):
if not bool(v):
Expand Down

0 comments on commit 550c74e

Please sign in to comment.