mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Sort input types in processing modeler dialog
This commit is contained in:
parent
de6519024e
commit
f969b03fd2
@ -615,7 +615,7 @@ class ModelerDialog(BASE, WIDGET):
|
||||
icon = QIcon(os.path.join(pluginPath, 'images', 'input.svg'))
|
||||
parametersItem = QTreeWidgetItem()
|
||||
parametersItem.setText(0, self.tr('Parameters'))
|
||||
for paramType in ModelerParameterDefinitionDialog.paramTypes:
|
||||
for paramType in sorted(ModelerParameterDefinitionDialog.paramTypes):
|
||||
paramItem = QTreeWidgetItem()
|
||||
paramItem.setText(0, paramType)
|
||||
paramItem.setIcon(0, icon)
|
||||
|
Loading…
x
Reference in New Issue
Block a user