diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-26 12:45:46 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-26 12:45:46 +0200 |
commit | 841061d50ea6bbd31e57e724a9898b5ded823423 (patch) | |
tree | 09ff059e165a6731997eee0b9e7ae88cb653f451 /editor/editor_file_system.cpp | |
parent | 2912cb99756dede609548503eeb3f6f1a2f2dfbf (diff) | |
parent | e4cf4fcb2f272f27742ea47c758feb60591a55a0 (diff) | |
download | redot-engine-841061d50ea6bbd31e57e724a9898b5ded823423.tar.gz |
Merge pull request #97421 from SaNeOr/fix#97387
Fix GDExtension classes inheriting from Resource 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 c4c7a2cbb8..bc46d01892 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1977,6 +1977,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; } @@ -2327,7 +2331,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; |