Skip to content

Commit ae7f180

Browse files
committedJun 26, 2015
[processing] fixed attribute filtering in parameters panel for ParameterTableFIeld param
fixes #12807
1 parent a4b2cf8 commit ae7f180

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎python/plugins/processing/gui/ParametersPanel.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,8 @@ def getFields(self, layer, datatype):
369369
if datatype == ParameterTableField.DATA_TYPE_STRING:
370370
fieldTypes = [QVariant.String]
371371
elif datatype == ParameterTableField.DATA_TYPE_NUMBER:
372-
fieldTypes = [QVariant.Int, QVariant.Double]
372+
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.ULongLong,
373+
QVariant.UInt]
373374

374375
fieldNames = set()
375376
for field in layer.pendingFields():

0 commit comments

Comments
 (0)