Skip to content

Commit

Permalink
Merge pull request #3431 from arnaud-morvan/processing_batch_none
Browse files Browse the repository at this point in the history
[processing] do not set "None" value in batch panel string widgets
  • Loading branch information
alexbruy committed Aug 24, 2016
2 parents 014409d + f0413e3 commit 57b5a7c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions python/plugins/processing/gui/BatchPanel.py
Expand Up @@ -170,10 +170,11 @@ def getWidgetFromParameter(self, param, row, col):
self.tblParameters.setColumnWidth(col, width)
else:
item = QLineEdit()
try:
item.setText(unicode(param.default))
except:
pass
if param.default is not None:
try:
item.setText(unicode(param.default))
except:
pass

return item

Expand Down

0 comments on commit 57b5a7c

Please sign in to comment.