Skip to content

Commit f2b7c0f

Browse files
committed
handle unset setting values in processing (fixes #11340)
1 parent b5f047d commit f2b7c0f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/plugins/processing/gui/ConfigDialog.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@ def eventFilter(self, editor, event):
229229
return QStyledItemDelegate.eventFilter(self, editor, event)
230230

231231
def convertValue(self, value):
232+
if value is None:
233+
return ""
232234
try:
233235
return int(value)
234236
except ValueError:

0 commit comments

Comments
 (0)