diff options
author | Zae <zaevi@live.com> | 2021-10-08 21:15:05 +0800 |
---|---|---|
committer | Zae <zaevi@live.com> | 2021-10-08 21:15:05 +0800 |
commit | 70cf3cbd60a9a852ff1cdf0dd8401d2b111f6f03 (patch) | |
tree | b501e84cc4acb76aca9c3e4b6ebf0d5e6f18b4b7 | |
parent | 9b34442d93298c9e15f2068e2ba955c411aeb3af (diff) |
Fix `EditorFileSystem` not checking `.gdignore` in existed directory
-rw-r--r-- | editor/editor_file_system.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index 953989aadd..6fef65c92d 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1078,8 +1078,8 @@ void EditorFileSystem::_scan_fs_changes(EditorFileSystemDirectory *p_dir, const } for (int i = 0; i < p_dir->subdirs.size(); i++) { - if (updated_dir && !p_dir->subdirs[i]->verified) { - //this directory was removed, add action to remove it + if ((updated_dir && !p_dir->subdirs[i]->verified) || _should_skip_directory(p_dir->subdirs[i]->get_path())) { + //this directory was removed or ignored, add action to remove it ItemAction ia; ia.action = ItemAction::ACTION_DIR_REMOVE; ia.dir = p_dir->subdirs[i]; |