Skip to content

Commit 2cd1770

Browse files
committedOct 3, 2014
[processing] disable GRASS 7 algorithm provider by default
1 parent 2f1dbab commit 2cd1770

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ class Grass7AlgorithmProvider(AlgorithmProvider):
4242

4343
def __init__(self):
4444
AlgorithmProvider.__init__(self)
45-
self.createAlgsList() # Preloading algorithms to speed up
45+
self.activate = False
46+
self.createAlgsList()
4647

4748
def initializeSettings(self):
4849
AlgorithmProvider.initializeSettings(self)

0 commit comments

Comments
 (0)
Please sign in to comment.