Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixing issue with 'Eliminate sliver polygons' and fields of type long.
  • Loading branch information
gacarrillor authored and alexbruy committed Oct 20, 2016
1 parent 09db6e4 commit be25a29
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 be25a29

Please sign in to comment.