mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 05:33:11 +00:00
Fix ProgressDialog crash when importing TTF font
This commit is contained in:
parent
680e489189
commit
8a82d3e9a7
@ -1718,6 +1718,7 @@ void EditorFileSystem::update_file(const String &p_file) {
|
||||
}
|
||||
|
||||
void EditorFileSystem::update_files(const Vector<String> &p_script_paths) {
|
||||
bool updated = false;
|
||||
for (const String &file : p_script_paths) {
|
||||
ERR_CONTINUE(file.is_empty());
|
||||
EditorFileSystemDirectory *fs = nullptr;
|
||||
@ -1747,6 +1748,7 @@ void EditorFileSystem::update_files(const Vector<String> &p_script_paths) {
|
||||
|
||||
memdelete(fs->files[cpos]);
|
||||
fs->files.remove_at(cpos);
|
||||
updated = true;
|
||||
}
|
||||
} else {
|
||||
String type = ResourceLoader::get_resource_type(file);
|
||||
@ -1814,13 +1816,16 @@ void EditorFileSystem::update_files(const Vector<String> &p_script_paths) {
|
||||
if (fs->files[cpos]->type == SNAME("PackedScene")) {
|
||||
_queue_update_scene_groups(file);
|
||||
}
|
||||
updated = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (updated) {
|
||||
_update_pending_script_classes();
|
||||
_update_pending_scene_groups();
|
||||
call_deferred(SNAME("emit_signal"), "filesystem_changed"); //update later
|
||||
}
|
||||
}
|
||||
|
||||
HashSet<String> EditorFileSystem::get_valid_extensions() const {
|
||||
return valid_extensions;
|
||||
|
Loading…
Reference in New Issue
Block a user