diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-09-14 20:44:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-14 20:44:52 +0200 |
commit | 1eed12f6d8076ac2ddf134186eccf22de9bb4ee2 (patch) | |
tree | 93323e68149fcfd4fcf7b786567f75e049b6b6f6 | |
parent | 8f33542ac3661afdaea3850159598e1311f25a6f (diff) | |
parent | d26de79f4e41534ffd7c71ef0608092c927f9118 (diff) |
Merge pull request #22074 from willnationsdev/plugin-description
Add EditorPlugin descriptions to their tooltip
-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 ef0b61e882..30027c0c34 100644 --- a/editor/editor_plugin_settings.cpp +++ b/editor/editor_plugin_settings.cpp @@ -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); |