We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f0a2dd + d04b5d2 commit 0452cbeCopy full SHA for 0452cbe
editor/editor_file_system.cpp
@@ -2066,15 +2066,17 @@ void EditorFileSystem::update_files(const Vector<String> &p_script_paths) {
2066
}
2067
2068
if (updated) {
2069
- _process_update_pending();
2070
if (update_files_icon_cache) {
2071
_update_files_icon_path();
2072
} else {
2073
for (EditorFileSystemDirectory::FileInfo *fi : files_to_update_icon_path) {
2074
_update_file_icon_path(fi);
2075
2076
2077
- call_deferred(SNAME("emit_signal"), "filesystem_changed"); //update later
+ if (!is_scanning()) {
+ _process_update_pending();
2078
+ call_deferred(SNAME("emit_signal"), "filesystem_changed"); //update later
2079
+ }
2080
2081
2082
0 commit comments