[processing] remove nviz algorithm from modeller (fix #9107)

This commit is contained in:
Alexander Bruy 2016-01-12 16:45:57 +02:00
parent 04542a900a
commit 3a514269ea
2 changed files with 8 additions and 0 deletions

View File

@ -52,6 +52,10 @@ class nviz(GeoAlgorithm):
GRASS_REGION_EXTENT_PARAMETER = 'GRASS_REGION_PARAMETER'
GRASS_REGION_CELLSIZE_PARAMETER = 'GRASS_REGION_CELLSIZE_PARAMETER'
def __init__(self):
GeoAlgorithm.__init__(self)
self.showInModeler = False
def getIcon(self):
return QIcon(os.path.join(pluginPath, 'images', 'grass.png'))

View File

@ -52,6 +52,10 @@ class nviz7(GeoAlgorithm):
GRASS_REGION_EXTENT_PARAMETER = 'GRASS_REGION_PARAMETER'
GRASS_REGION_CELLSIZE_PARAMETER = 'GRASS_REGION_CELLSIZE_PARAMETER'
def __init__(self):
GeoAlgorithm.__init__(self)
self.showInModeler = False
def getIcon(self):
return QtGui.QIcon(os.path.join(pluginPath, 'images', 'grass.png'))