From 72fdda7630d687d1720a7f78f4a4bddeac2bd626 Mon Sep 17 00:00:00 2001 From: Harrissou Sant-anna Date: Sun, 25 Nov 2018 07:37:53 +0100 Subject: [PATCH] Deactivate help button for SAGA algorithms to avoid user frustration because no help is provided in user manual (simply listing parameters and options already shown in GUI can't be called a help) --- python/plugins/processing/algs/saga/SagaAlgorithmProvider.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py b/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py index 8f2aa4c9e44..c6540e6644c 100755 --- a/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py +++ b/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py @@ -128,9 +128,6 @@ class SagaAlgorithmProvider(QgsProcessingProvider): def id(self): return 'saga' - def helpId(self): - return 'saga' - def defaultVectorFileExtension(self, hasGeometry=True): return 'shp' if hasGeometry else 'dbf'