diff options
author | SaNeOr <sane0r@outlook.com> | 2024-09-25 02:33:41 +0800 |
---|---|---|
committer | SaNeOr <sane0r@outlook.com> | 2024-09-25 04:09:09 +0800 |
commit | e4cf4fcb2f272f27742ea47c758feb60591a55a0 (patch) | |
tree | 9d8b97cc5a7c7faf1e96596904afdbf0e99b7049 /editor/editor_file_system.cpp | |
parent | 83d54ab2ad476ae265b323c2b88f4623b922f4c6 (diff) | |
download | redot-engine-e4cf4fcb2f272f27742ea47c758feb60591a55a0.tar.gz |
fix GDExtension classes inheriting from Resource are not using icons in FileSystem
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r-- | editor/editor_file_system.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index b1b64b5d60..fc9e9e0f4f 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1872,6 +1872,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(); + } + file_info->icon_path = icon_path; } @@ -2191,7 +2195,7 @@ void EditorFileSystem::update_files(const Vector<String> &p_script_paths) { _queue_update_scene_groups(file); } - if (fs->files[cpos]->type == SNAME("Resource")) { + if (ClassDB::is_parent_class(fs->files[cpos]->type, SNAME("Resource"))) { files_to_update_icon_path.push_back(fs->files[cpos]); } else if (old_script_class_icon_path != fs->files[cpos]->script_class_icon_path) { update_files_icon_cache = true; |