1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Use consistent casing in editor filter/search bars

This commit is contained in:
FireForge
2022-05-26 23:02:48 -05:00
parent 9d28e10276
commit 7f7244f04a
16 changed files with 24 additions and 27 deletions

View File

@@ -1402,9 +1402,9 @@ EditorAssetLibrary::EditorAssetLibrary(bool p_templates_only) {
filter = memnew(LineEdit);
if (templates_only) {
filter->set_placeholder(TTR("Search templates, projects, and demos"));
filter->set_placeholder(TTR("Search Templates, Projects, and Demos"));
} else {
filter->set_placeholder(TTR("Search assets (excluding templates, projects, and demos)"));
filter->set_placeholder(TTR("Search Assets (Excluding Templates, Projects, and Demos)"));
}
filter->set_clear_button_enabled(true);
search_hb->add_child(filter);