Skip to content

Commit

Permalink
Fixing issue with 'Eliminate sliver polygons' and fields of type long.
Browse files Browse the repository at this point in the history
(cherry picked from commit be25a29)
  • Loading branch information
gacarrillor authored and alexbruy committed Oct 20, 2016
1 parent 961f6be commit a7092ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/Eliminate.py
Expand Up @@ -102,7 +102,7 @@ def processAlgorithm(self, progress):
selectType = inLayer.fields()[selectindex].type()
selectionError = False

if selectType == 2:
if selectType == 2 or selectType == 4:
try:
y = int(comparisonvalue)
except ValueError:
Expand Down Expand Up @@ -162,7 +162,7 @@ def processAlgorithm(self, progress):
if aValue is None:
continue

if selectType == 2:
if selectType == 2 or selectType == 4:
x = int(aValue)
elif selectType == 6:
x = float(aValue)
Expand Down

0 comments on commit a7092ca

Please sign in to comment.