summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-07-19 08:03:08 +0200
committerGitHub <noreply@github.com>2022-07-19 08:03:08 +0200
commitbf24b49ee7fea66df83249961b7cea4c006c5c7b (patch)
tree8d6814ef3433c22d8f1b0446d8e495437fd68336 /editor
parentabe8b88702cdb4ce5ce154c31cb989e1cee56b5e (diff)
parent468157bfe07e5b03e7a45960fe91a7e48abcf741 (diff)
Merge pull request #63175 from fire-forge/filter-animations
Capitalize the SpriteFrames search bar placeholder text
Diffstat (limited to 'editor')
-rw-r--r--editor/plugins/sprite_frames_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp
index e7c2e455e6..0b6c0a9f0c 100644
--- a/editor/plugins/sprite_frames_editor_plugin.cpp
+++ b/editor/plugins/sprite_frames_editor_plugin.cpp
@@ -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));