Skip to content

Commit 71b3221

Browse files
committed
Merge pull request #97112 from KoBeWi/image_not_found
Fix generic conversion icon
2 parents 27dacd5 + 514bbbf commit 71b3221

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

editor/editor_resource_picker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ void EditorResourcePicker::_update_menu_items() {
297297
if (has_theme_icon(what, EditorStringName(EditorIcons))) {
298298
icon = get_editor_theme_icon(what);
299299
} else {
300-
icon = get_theme_icon(what, SNAME("Resource"));
300+
icon = get_editor_theme_icon(SNAME("Object"));
301301
}
302302

303303
edit_menu->add_icon_item(icon, vformat(TTR("Convert to %s"), what), CONVERT_BASE_ID + relative_id);

editor/filesystem_dock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3414,7 +3414,7 @@ void FileSystemDock::_file_and_folders_fill_popup(PopupMenu *p_popup, const Vect
34143414
if (has_theme_icon(E, SNAME("EditorIcons"))) {
34153415
icon = get_editor_theme_icon(E);
34163416
} else {
3417-
icon = get_editor_theme_icon(SNAME("Resource"));
3417+
icon = get_editor_theme_icon(SNAME("Object"));
34183418
}
34193419

34203420
container_menu->add_icon_item(icon, vformat(TTR(conversion_string_template), E), CONVERT_BASE_ID + relative_id);

0 commit comments

Comments
 (0)