diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2018-05-20 13:15:13 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-20 13:15:13 -0300 |
| commit | 9a5950ace52c4ebb575d452d6451259d6f2323e3 (patch) | |
| tree | 4cbee9b341cdf741784d8b07cb8b056a6b9192ea /editor/find_in_files.cpp | |
| parent | 5b11d16f219ff5741365cda8569297c0d39fee7a (diff) | |
| parent | 8afb00a8ec45526f957794a537cbcb30f9b8851a (diff) | |
Merge pull request #19064 from ibrahn/ui-text-changed-fixup
fixup project_manager and find_in_files for text_changed signal change.
Diffstat (limited to 'editor/find_in_files.cpp')
| -rw-r--r-- | editor/find_in_files.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/find_in_files.cpp b/editor/find_in_files.cpp index 74ea46838b..ddf619866d 100644 --- a/editor/find_in_files.cpp +++ b/editor/find_in_files.cpp @@ -428,6 +428,7 @@ FindInFilesDialog::FindInFilesDialog() { void FindInFilesDialog::set_search_text(String text) { _search_text_line_edit->set_text(text); + _on_search_text_modified(text); } String FindInFilesDialog::get_search_text() const { |