From 542bd5a52f4b658722786dc1df0c7c1f41da668c Mon Sep 17 00:00:00 2001 From: kobewi Date: Mon, 29 Dec 2025 00:46:39 +0100 Subject: [PATCH] Improve generic quick open title --- editor/gui/editor_quick_open_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/gui/editor_quick_open_dialog.cpp b/editor/gui/editor_quick_open_dialog.cpp index 5d26b204ea..05814e2747 100644 --- a/editor/gui/editor_quick_open_dialog.cpp +++ b/editor/gui/editor_quick_open_dialog.cpp @@ -145,7 +145,7 @@ String EditorQuickOpenDialog::get_dialog_title(const Vector &p_base_ return TTR("Select Scene"); } - return TTR("Select") + " " + p_base_types[0]; + return vformat(TTR("Select %s"), p_base_types[0]); } void EditorQuickOpenDialog::popup_dialog(const Vector &p_base_types, const Callable &p_item_selected_callback) {