diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-09-25 01:09:29 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-09-25 01:09:29 -0300 |
commit | c7d0565681ab4aa40748056f4f4b83250b4af431 (patch) | |
tree | df1c24d323de2e70596d309b2a4e5c662a3c4267 /editor/action_map_editor.cpp | |
parent | df0a822323a79e1a645f0c6a17d51c7602f23166 (diff) | |
download | redot-engine-c7d0565681ab4aa40748056f4f4b83250b4af431.tar.gz |
Make the search bars in the "Project Settings" dialog grab focus when they appear
Diffstat (limited to 'editor/action_map_editor.cpp')
-rw-r--r-- | editor/action_map_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/action_map_editor.cpp b/editor/action_map_editor.cpp index d47b315c40..e8ca3cc3e2 100644 --- a/editor/action_map_editor.cpp +++ b/editor/action_map_editor.cpp @@ -532,7 +532,7 @@ ActionMapEditor::ActionMapEditor() { action_list_search = memnew(LineEdit); action_list_search->set_h_size_flags(Control::SIZE_EXPAND_FILL); - action_list_search->set_placeholder(TTR("Filter by name...")); + action_list_search->set_placeholder(TTR("Filter by Name")); action_list_search->set_clear_button_enabled(true); action_list_search->connect("text_changed", callable_mp(this, &ActionMapEditor::_search_term_updated)); top_hbox->add_child(action_list_search); |