sort backends list by names
This commit is contained in:
parent
7a102347b8
commit
a698e16104
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ class BackendCfg(QDialog):
|
||||||
|
|
||||||
self.icon_cache = {}
|
self.icon_cache = {}
|
||||||
|
|
||||||
for name, backend in self.weboob.modules_loader.loaded.iteritems():
|
for name, backend in reversed(sorted(list(self.weboob.modules_loader.loaded.iteritems()))):
|
||||||
if not self.caps or backend.has_caps(*self.caps):
|
if not self.caps or backend.has_caps(*self.caps):
|
||||||
item = QListWidgetItem(name.capitalize())
|
item = QListWidgetItem(name.capitalize())
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue