From 3978aafecdb168911f8c76c5a015b45c7233fe29 Mon Sep 17 00:00:00 2001 From: Bitlytic Date: Sun, 1 Jun 2025 16:46:32 -0400 Subject: [PATCH] Add file search QoL when focused on folder text box --- editor/find_in_files.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/find_in_files.cpp b/editor/find_in_files.cpp index 220669fcbb..b62a82324e 100644 --- a/editor/find_in_files.cpp +++ b/editor/find_in_files.cpp @@ -395,6 +395,7 @@ FindInFilesDialog::FindInFilesDialog() { _folder_line_edit = memnew(LineEdit); _folder_line_edit->set_h_size_flags(Control::SIZE_EXPAND_FILL); + _folder_line_edit->connect(SceneStringName(text_submitted), callable_mp(this, &FindInFilesDialog::_on_search_text_submitted)); hbc->add_child(_folder_line_edit); Button *folder_button = memnew(Button);