mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Merge pull request #87563 from jsjtxietian/fix-filesystem-infinite
Fix editor will freeze when modifying filesystem filter path in Split Mode
This commit is contained in:
commit
907db8eebc
@ -979,6 +979,9 @@ void FileSystemDock::_update_file_list(bool p_keep_selection) {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (!directory.begins_with("res://")) {
|
||||
directory = "res://" + directory;
|
||||
}
|
||||
// Get infos on the directory + file.
|
||||
if (directory.ends_with("/") && directory != "res://") {
|
||||
directory = directory.substr(0, directory.length() - 1);
|
||||
|
Loading…
Reference in New Issue
Block a user