summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-06-06 02:47:56 -0300
committerMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-06-06 02:47:56 -0300
commitfc23c8f9412525cc50086cf10bc19fee2239710a (patch)
tree297cf87309b2b6572c567f0bf4dfec7c1b282b33 /editor
parent197b65f32ac811f79bc5599fbfe8cf83914b6873 (diff)
Add tooltip for the dependencies buttons in the orphan explorer dialog
Diffstat (limited to 'editor')
-rw-r--r--editor/dependency_editor.cpp2
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;