diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-04 16:38:52 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-04 16:38:52 +0100 |
commit | ad3e5a949e433b23034b41f05adce65fd3d4b791 (patch) | |
tree | f3f3fbb714b9e966c9a4d486caf2225f7ea9828f /editor/action_map_editor.cpp | |
parent | c772a5b050bfcdc959f97c4de26e8275b663021c (diff) | |
parent | c7d0565681ab4aa40748056f4f4b83250b4af431 (diff) | |
download | redot-engine-ad3e5a949e433b23034b41f05adce65fd3d4b791.tar.gz |
Merge pull request #82283 from YeldhamDev/focus_that_search_bar!
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 ab923f99fe..7bb6ec0d5d 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); |