Fix FileSystem not updated on file deletion

This commit is contained in:
Hilderin 2024-08-14 18:24:46 -04:00
parent 8e666adeed
commit a0cc8c5c3b
1 changed files with 1 additions and 1 deletions

View File

@ -2112,8 +2112,8 @@ void EditorFileSystem::update_files(const Vector<String> &p_script_paths) {
} }
if (!is_scanning()) { if (!is_scanning()) {
_process_update_pending(); _process_update_pending();
call_deferred(SNAME("emit_signal"), "filesystem_changed"); //update later
} }
call_deferred(SNAME("emit_signal"), "filesystem_changed"); // Update later
} }
} }