Skip to content

Commit

Permalink
[processing] order 3rd party provider groups (#5723)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 24, 2017
1 parent a477ea3 commit c2b3ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ProcessingToolbox.py
Expand Up @@ -455,7 +455,7 @@ def activateProvider():
else:
parent.setText(0, text)

for groupItem in list(groups.values()):
for group, groupItem in sorted(groups.items(), key=operator.itemgetter(1)):
parent.addChild(groupItem)

if not provider.id() in ('qgis', 'native'):
Expand Down

0 comments on commit c2b3ac5

Please sign in to comment.