Skip to content

Commit bfafa8d

Browse files
DelazJnyalldawson
authored andcommittedJul 24, 2018
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)
1 parent b605d34 commit bfafa8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/processing/algs/qgis/SelectByAttribute.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class SelectByAttribute(QgisAlgorithm):
4848
OUTPUT = 'OUTPUT'
4949

5050
OPERATORS = ['=',
51-
'!=',
51+
'',
5252
'>',
5353
'>=',
5454
'<',
@@ -80,7 +80,7 @@ def flags(self):
8080

8181
def initAlgorithm(self, config=None):
8282
self.operators = ['=',
83-
'!=',
83+
'',
8484
'>',
8585
'>=',
8686
'<',

0 commit comments

Comments
 (0)
Please sign in to comment.