We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b920799 commit 4777abbCopy full SHA for 4777abb
python/plugins/processing/algs/saga/SagaAlgorithm.py
@@ -30,6 +30,7 @@
30
import importlib
31
from copy import deepcopy
32
from qgis.core import (Qgis,
33
+ QgsApplication,
34
QgsProcessingUtils,
35
QgsProcessingException,
36
QgsMessageLog,
@@ -101,6 +102,12 @@ def groupId(self):
101
102
def shortHelpString(self):
103
return shortHelp.get(self.id(), None)
104
105
+ def icon(self):
106
+ return QgsApplication.getThemeIcon("/providerSaga.svg")
107
+
108
+ def svgIconPath(self):
109
+ return QgsApplication.iconPath("providerSaga.svg")
110
111
def flags(self):
112
# TODO - maybe it's safe to background thread this?
113
return super().flags() | QgsProcessingAlgorithm.FlagNoThreading
0 commit comments