1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

fixup project_manager and find_in_files for text_changed signal change.

Background:
Commit 2abec59db9 removing text_changed
signal emmision from LineEdit::set_text broke the project manager and
find_in_files.
This commit is contained in:
Ibrahn Sahir
2018-05-19 23:59:11 +01:00
parent 5b11d16f21
commit 8afb00a8ec
2 changed files with 15 additions and 3 deletions

View File

@@ -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 {