File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
python/plugins/processing/modeler Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 31
31
from processing .core .AlgorithmProvider import AlgorithmProvider
32
32
from processing .core .ProcessingConfig import ProcessingConfig , Setting
33
33
from processing .core .ProcessingLog import ProcessingLog
34
+ from processing .modeler .CreateNewModelAction import \
35
+ CreateNewModelAction
34
36
from processing .modeler .SaveAsPythonScriptAction import \
35
37
SaveAsPythonScriptAction
36
38
from processing .modeler .ModelerUtils import ModelerUtils
@@ -45,7 +47,7 @@ class ModelerAlgorithmProvider(AlgorithmProvider):
45
47
46
48
def __init__ (self ):
47
49
AlgorithmProvider .__init__ (self )
48
- # self.actions = [CreateNewModelAction()]
50
+ self .actions = [CreateNewModelAction ()]
49
51
self .contextMenuActions = [EditModelAction (), DeleteModelAction (),
50
52
SaveAsPythonScriptAction ()]
51
53
You can’t perform that action at this time.
0 commit comments