processing: fix population of commander combobox (fixes #15283)

(cherry picked from commit d3882d5)
This commit is contained in:
Juergen E. Fischer 2016-08-28 22:57:52 +02:00
parent 485d7a0a47
commit 420311e7f1

View File

@ -102,7 +102,7 @@ class CommanderWindow(QDialog):
# Add algorithms
for algs in algList.algs.values():
for alg in algs:
self.combo.addItem('Processing algorithm: ' + alg.name)
self.combo.addItem('Processing algorithm: ' + alg)
# Add functions
for command in dir(self.commands):