Merge pull request #79984 from KoBeWi/reverse_engineering_or_something_idk
Reverse condition for skipping directories
This commit is contained in:
commit
2d6e98d9c8
@ -823,7 +823,7 @@ void EditorFileDialog::update_file_list() {
|
|||||||
}
|
}
|
||||||
} else if (!dir_access->current_is_hidden()) {
|
} else if (!dir_access->current_is_hidden()) {
|
||||||
String full_path = cdir == "res://" ? item : dir_access->get_current_dir() + "/" + item;
|
String full_path = cdir == "res://" ? item : dir_access->get_current_dir() + "/" + item;
|
||||||
if (dir_access->current_is_dir() && (!EditorFileSystem::_should_skip_directory(full_path) || Engine::get_singleton()->is_project_manager_hint())) {
|
if (dir_access->current_is_dir() && (Engine::get_singleton()->is_project_manager_hint() || !EditorFileSystem::_should_skip_directory(full_path))) {
|
||||||
dirs.push_back(item);
|
dirs.push_back(item);
|
||||||
} else {
|
} else {
|
||||||
files.push_back(item);
|
files.push_back(item);
|
||||||
|
Loading…
Reference in New Issue
Block a user