diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-26 15:52:39 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-26 16:01:23 +0200 |
commit | a83ea6b57ddbfbce656cd47a6d21cd6a13c37d5a (patch) | |
tree | 3da8e09dd60c0c7ba0b8f20a26f1dcc23baed267 /editor/editor_file_system.cpp | |
parent | a4c1804cab2ace8c7496390132c8cdc019b55078 (diff) | |
download | redot-engine-a83ea6b57ddbfbce656cd47a6d21cd6a13c37d5a.tar.gz |
Fix EditorFileSystem crash when fetching icons for unknown file types
Fixes crash reported in https://github.com/godotengine/godot/pull/97421#issuecomment-2376684690.
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r-- | editor/editor_file_system.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index bc46d01892..afa0548044 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1978,7 +1978,10 @@ void EditorFileSystem::_update_file_icon_path(EditorFileSystemDirectory::FileInf } if (icon_path.is_empty() && !file_info->type.is_empty()) { - icon_path = EditorNode::get_singleton()->get_class_icon(file_info->type)->get_path(); + Ref<Texture2D> icon = EditorNode::get_singleton()->get_class_icon(file_info->type); + if (icon.is_valid()) { + icon_path = icon->get_path(); + } } file_info->icon_path = icon_path; |