diff options
author | jsjtxietian <jsjtxietian@outlook.com> | 2024-04-15 11:13:46 +0800 |
---|---|---|
committer | jsjtxietian <jsjtxietian@outlook.com> | 2024-04-15 11:13:46 +0800 |
commit | d06db652ef208fb31103a431a1a04e9d997552cf (patch) | |
tree | 202beb8740222ec8096476ab68e8ab626987ddff /editor/gui/editor_file_dialog.cpp | |
parent | d00734053f9cda8ade5e6c3afd86266e6df571c6 (diff) | |
download | redot-engine-d06db652ef208fb31103a431a1a04e9d997552cf.tar.gz |
Fix editor's file explorer will show directories that should be skipped
Diffstat (limited to 'editor/gui/editor_file_dialog.cpp')
-rw-r--r-- | editor/gui/editor_file_dialog.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/editor/gui/editor_file_dialog.cpp b/editor/gui/editor_file_dialog.cpp index 25c8610ff4..a7cdb65145 100644 --- a/editor/gui/editor_file_dialog.cpp +++ b/editor/gui/editor_file_dialog.cpp @@ -968,8 +968,10 @@ 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() && (Engine::get_singleton()->is_project_manager_hint() || !EditorFileSystem::_should_skip_directory(full_path))) { - dirs.push_back(item); + if (dir_access->current_is_dir()) { + if (Engine::get_singleton()->is_project_manager_hint() || !EditorFileSystem::_should_skip_directory(full_path)) { + dirs.push_back(item); + } } else { files.push_back(item); } |