Skip to content

Commit c2b3ac5

Browse files
authoredNov 24, 2017
[processing] order 3rd party provider groups (#5723)
1 parent a477ea3 commit c2b3ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/ProcessingToolbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ def activateProvider():
455455
else:
456456
parent.setText(0, text)
457457

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.