Fixed bug #17929. Inconsistent sort in file manager.

This commit fix a bug #17929
(https://github.com/godotengine/godot/issues/17929)
in file manager. I'm just added sorting of files list
in method FileSystemDock::_update_files.
This commit is contained in:
Mintormo 2018-04-08 13:18:01 +03:00
parent 9e7cee2ceb
commit 41a3929d25

View File

@ -533,6 +533,7 @@ void FileSystemDock::_update_files(bool p_keep_selection) {
filelist.push_back(fi);
}
filelist.sort();
}
String oi = "Object";