You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 19:11:41 +00:00
Merge pull request #22074 from willnationsdev/plugin-description
Add EditorPlugin descriptions to their tooltip
This commit is contained in:
@@ -117,7 +117,7 @@ void EditorPluginSettings::update_plugins() {
|
||||
|
||||
TreeItem *item = plugin_list->create_item(root);
|
||||
item->set_text(0, name);
|
||||
item->set_tooltip(0, "Name: " + name + "\nPath: " + path + "\nMain Script: " + script);
|
||||
item->set_tooltip(0, "Name: " + name + "\nPath: " + path + "\nMain Script: " + script + "\nDescription: " + description);
|
||||
item->set_metadata(0, d);
|
||||
item->set_text(1, version);
|
||||
item->set_metadata(1, script);
|
||||
|
||||
Reference in New Issue
Block a user