summaryrefslogtreecommitdiff
path: root/editor/editor_command_palette.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-05-30 02:03:45 +0200
committerGitHub <noreply@github.com>2022-05-30 02:03:45 +0200
commit26bfaf34dda931d5b69713d4fb99e7a73c5dd75c (patch)
treefa93f37cf0fd29fb4136aea09140c9a2361a6c2c /editor/editor_command_palette.cpp
parent5dd667905f44495868bccbc0514eb582abbeff28 (diff)
parent7f7244f04a15a050f5f2a5f1c615ee0d43bf6cf9 (diff)
Merge pull request #61488 from fire-forge/filter
Diffstat (limited to 'editor/editor_command_palette.cpp')
-rw-r--r--editor/editor_command_palette.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_command_palette.cpp b/editor/editor_command_palette.cpp
index e3cbd8ad50..c1cd7f9c7b 100644
--- a/editor/editor_command_palette.cpp
+++ b/editor/editor_command_palette.cpp
@@ -299,7 +299,7 @@ EditorCommandPalette::EditorCommandPalette() {
add_child(vbc);
command_search_box = memnew(LineEdit);
- command_search_box->set_placeholder(TTR("Filter commands"));
+ command_search_box->set_placeholder(TTR("Filter Commands"));
command_search_box->connect("gui_input", callable_mp(this, &EditorCommandPalette::_sbox_input));
command_search_box->connect("text_changed", callable_mp(this, &EditorCommandPalette::_update_command_search));
command_search_box->set_v_size_flags(Control::SIZE_EXPAND_FILL);