Skip to content

Commit 73b191c

Browse files
committed
not sort functions in combobox
1 parent 90ff8b9 commit 73b191c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgRoutingLayer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def loadFunctionsForVersion(self):
299299
self.dock.comboBoxFunction.clear()
300300

301301
#for funcname, function in self.functions.items():
302-
for funcname in sorted(self.functions):
302+
for funcname in self.functions:
303303
function = self.functions[funcname]
304304
if (function.isSupportedVersion(self.version)):
305305
self.dock.comboBoxFunction.addItem(function.getName())

0 commit comments

Comments
 (0)