diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-30 14:05:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 14:05:08 +0200 |
commit | ebe4f8d3a4a706c5eb1b7a8283883c63c131cad7 (patch) | |
tree | a1207e5bae1f22f2acea5ba634bfd32143d3c916 /editor/editor_plugin_settings.cpp | |
parent | 5e772885025225653b2a5766ec41fa344c2ebe3e (diff) | |
parent | 97f8c9b97cf68705c5fe215314df7f9c0290b14b (diff) | |
download | redot-engine-ebe4f8d3a4a706c5eb1b7a8283883c63c131cad7.tar.gz |
Merge pull request #65039 from Mickeon/rename-treeitem-tooltip
Diffstat (limited to 'editor/editor_plugin_settings.cpp')
-rw-r--r-- | editor/editor_plugin_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_plugin_settings.cpp b/editor/editor_plugin_settings.cpp index e5a5a372ad..a8df486381 100644 --- a/editor/editor_plugin_settings.cpp +++ b/editor/editor_plugin_settings.cpp @@ -102,7 +102,7 @@ void EditorPluginSettings::update_plugins() { TreeItem *item = plugin_list->create_item(root); item->set_text(0, name); - item->set_tooltip(0, TTR("Name:") + " " + name + "\n" + TTR("Path:") + " " + path + "\n" + TTR("Main Script:") + " " + script + "\n" + TTR("Description:") + " " + description); + item->set_tooltip_text(0, TTR("Name:") + " " + name + "\n" + TTR("Path:") + " " + path + "\n" + TTR("Main Script:") + " " + script + "\n" + TTR("Description:") + " " + description); item->set_metadata(0, path); item->set_text(1, version); item->set_metadata(1, script); |