Merge pull request #114406 from KoBeWi/zaznacz

Improve generic quick open title
This commit is contained in:
Thaddeus Crews 2026-03-06 12:40:21 -06:00
commit 27ff328ef7
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC

View file

@ -149,7 +149,7 @@ String EditorQuickOpenDialog::get_dialog_title(const Vector<StringName> &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<StringName> &p_base_types, const Callable &p_item_selected_callback) {