Skip to content

Commit

Permalink
[processing] remove "Select by..." algorithms from modeler (fix #17211)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Oct 2, 2017
1 parent ac5d59b commit 5782975
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/plugins/processing/algs/qgis/SelectByAttribute.py
Expand Up @@ -57,6 +57,7 @@ class SelectByAttribute(GeoAlgorithm):
def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Select by attribute')
self.group, self.i18n_group = self.trAlgorithm('Vector selection tools')
self.showInModeler = False

self.i18n_operators = ['=',
'!=',
Expand Down
1 change: 1 addition & 0 deletions python/plugins/processing/algs/qgis/SelectByExpression.py
Expand Up @@ -44,6 +44,7 @@ class SelectByExpression(GeoAlgorithm):
def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Select by expression')
self.group, self.i18n_group = self.trAlgorithm('Vector selection tools')
self.showInModeler = False

self.methods = [self.tr('creating new selection'),
self.tr('adding to current selection'),
Expand Down
1 change: 1 addition & 0 deletions python/plugins/processing/algs/qgis/SelectByLocation.py
Expand Up @@ -57,6 +57,7 @@ def getIcon(self):
def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Select by location')
self.group, self.i18n_group = self.trAlgorithm('Vector selection tools')
self.showInModeler = False

self.methods = [self.tr('creating new selection'),
self.tr('adding to current selection'),
Expand Down

0 comments on commit 5782975

Please sign in to comment.