Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fixed attribute filtering in parameters panel for Parame…
…terTableFIeld param

fixes #12807
  • Loading branch information
volaya committed Jun 26, 2015
1 parent a4b2cf8 commit ae7f180
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/gui/ParametersPanel.py
Expand Up @@ -369,7 +369,8 @@ def getFields(self, layer, datatype):
if datatype == ParameterTableField.DATA_TYPE_STRING:
fieldTypes = [QVariant.String]
elif datatype == ParameterTableField.DATA_TYPE_NUMBER:
fieldTypes = [QVariant.Int, QVariant.Double]
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.ULongLong,
QVariant.UInt]

fieldNames = set()
for field in layer.pendingFields():
Expand Down

0 comments on commit ae7f180

Please sign in to comment.