From 468157bfe07e5b03e7a45960fe91a7e48abcf741 Mon Sep 17 00:00:00 2001 From: FireForge <67974470+fire-forge@users.noreply.github.com> Date: Mon, 18 Jul 2022 20:15:50 -0500 Subject: [PATCH] Capitalize the SpriteFrames search bar placeholder Follow-up to https://github.com/godotengine/godot/pull/49488 --- editor/plugins/sprite_frames_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index e7c2e455e63..0b6c0a9f0c0 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));