1
0
Fork 0

Editor: Fix export dialog icon for empty types

This commit is contained in:
Michael Neumann 2025-12-19 15:19:44 +01:00
parent 551ce8d47f
commit 73bb2fcfb3
1 changed files with 8 additions and 1 deletions

View File

@ -1108,7 +1108,14 @@ bool ProjectExportDialog::_fill_tree(EditorFileSystemDirectory *p_dir, TreeItem
String path = p_dir->get_file_path(i);
file->set_icon(0, EditorNode::get_singleton()->get_class_icon(type));
Ref<Texture2D> icon;
if (!type.is_empty()) {
icon = EditorNode::get_singleton()->get_class_icon(type);
}
if (icon.is_null()) {
icon = get_editor_theme_icon(SNAME("File"));
}
file->set_icon(0, icon);
file->set_editable(0, true);
file->set_metadata(0, path);