Change search results limit in FileSystem dock from 128 to 10000

This commit is contained in:
Bartłomiej T. Listwon 2021-03-22 14:44:47 +01:00
parent 07f076fa4f
commit 5aa88afa5d

View file

@ -815,7 +815,8 @@ void FileSystemDock::_update_file_list(bool p_keep_selection) {
if (searched_string.length() > 0) {
// Display the search results.
_search(EditorFileSystem::get_singleton()->get_filesystem(), &file_list, 128);
// Limit the number of results displayed to avoid an infinite loop.
_search(EditorFileSystem::get_singleton()->get_filesystem(), &file_list, 10000);
} else {
if (display_mode == DISPLAY_MODE_TREE_ONLY || always_show_folders) {
// Display folders in the list.