summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-09-14 20:44:52 +0200
committerGitHub <noreply@github.com>2018-09-14 20:44:52 +0200
commit1eed12f6d8076ac2ddf134186eccf22de9bb4ee2 (patch)
tree93323e68149fcfd4fcf7b786567f75e049b6b6f6
parent8f33542ac3661afdaea3850159598e1311f25a6f (diff)
parentd26de79f4e41534ffd7c71ef0608092c927f9118 (diff)
Merge pull request #22074 from willnationsdev/plugin-description
Add EditorPlugin descriptions to their tooltip
-rw-r--r--editor/editor_plugin_settings.cpp2
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);