Merge pull request #63175 from fire-forge/filter-animations

Capitalize the SpriteFrames search bar placeholder text
This commit is contained in:
Rémi Verschelde 2022-07-19 08:03:08 +02:00 committed by GitHub
commit bf24b49ee7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1169,7 +1169,7 @@ SpriteFramesEditor::SpriteFramesEditor() {
anim_search_box = memnew(LineEdit);
hbc_animlist->add_child(anim_search_box);
anim_search_box->set_h_size_flags(SIZE_EXPAND_FILL);
anim_search_box->set_placeholder(TTR("Filter animations"));
anim_search_box->set_placeholder(TTR("Filter Animations"));
anim_search_box->set_clear_button_enabled(true);
anim_search_box->connect("text_changed", callable_mp(this, &SpriteFramesEditor::_animation_search_text_changed));