Skip to content

Commit

Permalink
Fix StringWidgetWrapper.value method
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-morvan authored and volaya committed Oct 5, 2016
1 parent c010a03 commit d33e338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/wrappers.py
Expand Up @@ -657,7 +657,7 @@ def value(self):
text = self.widget.getValue()
return text
if self.dialogType == DIALOG_BATCH:
text = self.widget.text()
return self.widget.text()
else:
if self.param.multiline:
value = self.widget.getValue()
Expand Down

0 comments on commit d33e338

Please sign in to comment.