diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2019-06-09 18:37:48 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-09 18:37:48 -0300 |
commit | 138a8f1a99f8b79556e46f487818a451d23170a4 (patch) | |
tree | 7bad04413dfda1789d0453673ad510fa232f149b | |
parent | 91b3daa8d619ec44f6d9aba1535698aa29ad2bf6 (diff) | |
parent | fc23c8f9412525cc50086cf10bc19fee2239710a (diff) |
Merge pull request #29527 from YeldhamDev/orphan_dialog_dependencies_tooltip
Add tooltip for the dependencies buttons in the orphan explorer dialog
-rw-r--r-- | editor/dependency_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/dependency_editor.cpp b/editor/dependency_editor.cpp index bde73e9268..cc9e2c12e8 100644 --- a/editor/dependency_editor.cpp +++ b/editor/dependency_editor.cpp @@ -725,7 +725,7 @@ bool OrphanResourcesDialog::_fill_owners(EditorFileSystemDirectory *efsd, HashMa int ds = efsd->get_file_deps(i).size(); ti->set_text(1, itos(ds)); if (ds) { - ti->add_button(1, get_icon("GuiVisibilityVisible", "EditorIcons")); + ti->add_button(1, get_icon("GuiVisibilityVisible", "EditorIcons"), -1, false, TTR("Show Dependencies")); } ti->set_metadata(0, path); has_children = true; |