Skip to content
Permalink
Browse files
[processing] Fix config exception with INT/FLOAT settings
Fixes #18179
  • Loading branch information
nyalldawson committed Feb 23, 2018
1 parent 3e86804 commit 75a9150
Showing 1 changed file with 2 additions and 0 deletions.
@@ -400,6 +400,8 @@ def setEditorData(self, editor, index):
setting = index.model().data(index, Qt.UserRole)
if setting.valuetype == Setting.SELECTION:
editor.setCurrentIndex(editor.findText(value))
elif setting.valuetype in (Setting.FLOAT, Setting.INT):
editor.setValue(value)
else:
editor.setText(value)

0 comments on commit 75a9150

Please sign in to comment.