Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
handle unset setting values in processing (fixes #11340)
  • Loading branch information
jef-n committed Oct 21, 2014
1 parent b5f047d commit f2b7c0f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/gui/ConfigDialog.py
Expand Up @@ -229,6 +229,8 @@ def eventFilter(self, editor, event):
return QStyledItemDelegate.eventFilter(self, editor, event)

def convertValue(self, value):
if value is None:
return ""
try:
return int(value)
except ValueError:
Expand Down

0 comments on commit f2b7c0f

Please sign in to comment.