Restore hidden folder behavior for project manager
This commit is contained in:
parent
9d3c8f04d4
commit
38fed916e7
1 changed files with 1 additions and 1 deletions
|
@ -789,7 +789,7 @@ void EditorFileDialog::update_file_list() {
|
|||
}
|
||||
} else if (!dir_access->current_is_hidden()) {
|
||||
String full_path = cdir == "res://" ? item : dir_access->get_current_dir() + "/" + item;
|
||||
if (dir_access->current_is_dir() && !EditorFileSystem::_should_skip_directory(full_path)) {
|
||||
if (dir_access->current_is_dir() && (!EditorFileSystem::_should_skip_directory(full_path) || Engine::get_singleton()->is_project_manager_hint())) {
|
||||
dirs.push_back(item);
|
||||
} else {
|
||||
files.push_back(item);
|
||||
|
|
Loading…
Reference in a new issue