We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09db6e4 commit be25a29Copy full SHA for be25a29
python/plugins/processing/algs/qgis/Eliminate.py
@@ -113,7 +113,7 @@ def processAlgorithm(self, progress):
113
selectType = processLayer.fields()[selectindex].type()
114
selectionError = False
115
116
- if selectType == 2:
+ if selectType == 2 or selectType == 4:
117
try:
118
y = int(comparisonvalue)
119
except ValueError:
@@ -173,7 +173,7 @@ def processAlgorithm(self, progress):
173
if aValue is None:
174
continue
175
176
177
x = int(aValue)
178
elif selectType == 6:
179
x = float(aValue)
0 commit comments