Skip to content

Commit 420311e

Browse files
committed
processing: fix population of commander combobox (fixes #15283)
(cherry picked from commit d3882d5)
1 parent 485d7a0 commit 420311e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/plugins/processing/gui/CommanderWindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def fillCombo(self):
102102
# Add algorithms
103103
for algs in algList.algs.values():
104104
for alg in algs:
105-
self.combo.addItem('Processing algorithm: ' + alg.name)
105+
self.combo.addItem('Processing algorithm: ' + alg)
106106

107107
# Add functions
108108
for command in dir(self.commands):

0 commit comments

Comments
 (0)