mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
Merge pull request #97112 from KoBeWi/image_not_found
Fix generic conversion icon
This commit is contained in:
commit
71b3221607
@ -297,7 +297,7 @@ void EditorResourcePicker::_update_menu_items() {
|
|||||||
if (has_theme_icon(what, EditorStringName(EditorIcons))) {
|
if (has_theme_icon(what, EditorStringName(EditorIcons))) {
|
||||||
icon = get_editor_theme_icon(what);
|
icon = get_editor_theme_icon(what);
|
||||||
} else {
|
} else {
|
||||||
icon = get_theme_icon(what, SNAME("Resource"));
|
icon = get_editor_theme_icon(SNAME("Object"));
|
||||||
}
|
}
|
||||||
|
|
||||||
edit_menu->add_icon_item(icon, vformat(TTR("Convert to %s"), what), CONVERT_BASE_ID + relative_id);
|
edit_menu->add_icon_item(icon, vformat(TTR("Convert to %s"), what), CONVERT_BASE_ID + relative_id);
|
||||||
|
@ -3414,7 +3414,7 @@ void FileSystemDock::_file_and_folders_fill_popup(PopupMenu *p_popup, const Vect
|
|||||||
if (has_theme_icon(E, SNAME("EditorIcons"))) {
|
if (has_theme_icon(E, SNAME("EditorIcons"))) {
|
||||||
icon = get_editor_theme_icon(E);
|
icon = get_editor_theme_icon(E);
|
||||||
} else {
|
} else {
|
||||||
icon = get_editor_theme_icon(SNAME("Resource"));
|
icon = get_editor_theme_icon(SNAME("Object"));
|
||||||
}
|
}
|
||||||
|
|
||||||
container_menu->add_icon_item(icon, vformat(TTR(conversion_string_template), E), CONVERT_BASE_ID + relative_id);
|
container_menu->add_icon_item(icon, vformat(TTR(conversion_string_template), E), CONVERT_BASE_ID + relative_id);
|
||||||
|
Loading…
Reference in New Issue
Block a user