mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
[processing] fixed attribute filtering in parameters panel for ParameterTableFIeld param
fixes #12807
This commit is contained in:
parent
a4b2cf88d0
commit
ae7f180c09
@ -369,7 +369,8 @@ class ParametersPanel(BASE, WIDGET):
|
||||
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():
|
||||
|
Loading…
x
Reference in New Issue
Block a user