summaryrefslogtreecommitdiffstats
path: root/editor/action_map_editor.cpp
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2023-09-25 01:09:29 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2023-09-25 01:09:29 -0300
commitc7d0565681ab4aa40748056f4f4b83250b4af431 (patch)
treedf1c24d323de2e70596d309b2a4e5c662a3c4267 /editor/action_map_editor.cpp
parentdf0a822323a79e1a645f0c6a17d51c7602f23166 (diff)
downloadredot-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.cpp2
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);