diff options
author | Will Nations <willnationsdev@gmail.com> | 2018-09-14 12:21:09 -0500 |
---|---|---|
committer | Will Nations <willnationsdev@gmail.com> | 2018-09-14 12:21:09 -0500 |
commit | d26de79f4e41534ffd7c71ef0608092c927f9118 (patch) | |
tree | 8b28d56423a179bf499592faf7ecea2b97801512 /editor | |
parent | 5961a6da03e70dbfa811c30c4ec684d3a7746bf6 (diff) |
Add EditorPlugin descriptions to their tooltip
Diffstat (limited to 'editor')
-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); |