Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Display same symbol for "not equal" operator in "Select by attribute"…
… algorithm

as in "Extract by attribute" algorithm and "select features by value" function

(cherry-picked from 8a1964f)
  • Loading branch information
DelazJ authored and nyalldawson committed Jul 24, 2018
1 parent b605d34 commit bfafa8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/SelectByAttribute.py
Expand Up @@ -48,7 +48,7 @@ class SelectByAttribute(QgisAlgorithm):
OUTPUT = 'OUTPUT'

OPERATORS = ['=',
'!=',
'',
'>',
'>=',
'<',
Expand Down Expand Up @@ -80,7 +80,7 @@ def flags(self):

def initAlgorithm(self, config=None):
self.operators = ['=',
'!=',
'',
'>',
'>=',
'<',
Expand Down

0 comments on commit bfafa8d

Please sign in to comment.