1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #37796 from Gogsi/master

Improve consistency in file order
This commit is contained in:
Rémi Verschelde
2021-05-18 11:45:05 +02:00
committed by GitHub
3 changed files with 6 additions and 7 deletions

View File

@@ -1677,7 +1677,7 @@ struct _ScriptEditorItemData {
if (sort_key == id.sort_key) {
return index < id.index;
} else {
return sort_key < id.sort_key;
return sort_key.naturalnocasecmp_to(id.sort_key) < 0;
}
} else {
return category < id.category;