summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorWill Nations <willnationsdev@gmail.com>2018-09-14 12:21:09 -0500
committerWill Nations <willnationsdev@gmail.com>2018-09-14 12:21:09 -0500
commitd26de79f4e41534ffd7c71ef0608092c927f9118 (patch)
tree8b28d56423a179bf499592faf7ecea2b97801512 /editor
parent5961a6da03e70dbfa811c30c4ec684d3a7746bf6 (diff)
Add EditorPlugin descriptions to their tooltip
Diffstat (limited to 'editor')
-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);