From bbf62e97b8438644662a94b08297fdfb5c068b6f Mon Sep 17 00:00:00 2001 From: kobewi Date: Fri, 3 Jun 2022 01:56:21 +0200 Subject: [PATCH] Improve title of DependencyEditorOwners (cherry picked from commit 847eee71dfb9462df69195e8415a29258994584c) --- editor/dependency_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/dependency_editor.cpp b/editor/dependency_editor.cpp index 6d06aff9b..9cc697bfe 100644 --- a/editor/dependency_editor.cpp +++ b/editor/dependency_editor.cpp @@ -357,7 +357,7 @@ void DependencyEditorOwners::show(const String &p_path) { _fill_owners(EditorFileSystem::get_singleton()->get_filesystem()); popup_centered_ratio(); - set_title(TTR("Owners Of:") + " " + p_path.get_file()); + set_title(vformat(TTR("Owners of: %s (Total: %d)"), p_path.get_file(), owners->get_item_count())); } DependencyEditorOwners::DependencyEditorOwners(EditorNode *p_editor) {