We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8cb8c1 commit f5b0dbeCopy full SHA for f5b0dbe
python/plugins/processing/gui/AlgorithmDialogBase.py
@@ -34,6 +34,7 @@
34
from qgis.utils import iface
35
36
from processing.core.ProcessingConfig import ProcessingConfig
37
+from processing.gui import AlgorithmClassification
38
39
pluginPath = os.path.split(os.path.dirname(__file__))[0]
40
WIDGET, BASE = uic.loadUiType(
@@ -64,7 +65,7 @@ def __init__(self, alg):
64
65
66
self.btnClose = self.buttonBox.button(QDialogButtonBox.Close)
67
- self.setWindowTitle(self.alg.name)
68
+ self.setWindowTitle(AlgorithmClassification.getDisplayName(self.alg))
69
70
# load algorithm help if available
71
isText, algHelp = self.alg.help()
0 commit comments