mirror of
https://github.com/godotengine/godot.git
synced 2025-01-30 13:51:29 +00:00
Merge pull request #27853 from akien-mga/classref-tooltip
Fix TTR string for class reference tooltip
This commit is contained in:
commit
444fa4c1c8
@ -1735,7 +1735,7 @@ void ScriptEditor::_update_script_names() {
|
||||
|
||||
String name = eh->get_class();
|
||||
Ref<Texture> icon = get_icon("Help", "EditorIcons");
|
||||
String tooltip = name + TTR(" Class Reference");
|
||||
String tooltip = vformat(TTR("%s Class Reference"), name);
|
||||
|
||||
_ScriptEditorItemData sd;
|
||||
sd.icon = icon;
|
||||
|
Loading…
Reference in New Issue
Block a user