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 57b4061 commit e64a96f
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 @@ -113,7 +113,7 @@ def processAlgorithm(self, progress):
selectType = processLayer.fields()[selectindex].type()
selectionError = False

if selectType == 2:
if selectType == 2 or selectType == 4:
try:
y = int(comparisonvalue)
except ValueError:
Expand Down Expand Up @@ -173,7 +173,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 e64a96f

Please sign in to comment.