Skip to content

Commit

Permalink
Remember search text in Find/Replace in Files dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
miv391 committed Mar 8, 2024
1 parent f2045ba commit bfd1700
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions editor/find_in_files.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,24 @@ FindInFilesDialog::FindInFilesDialog() {
}

void FindInFilesDialog::set_search_text(const String &text) {
_search_text_line_edit->set_text(text);
_on_search_text_modified(text);
if (_mode == SEARCH_MODE) {
if (!text.is_empty()) {
_search_text_line_edit->set_text(text);
_on_search_text_modified(text);
}
callable_mp((Control *)_search_text_line_edit, &Control::grab_focus).call_deferred();
_search_text_line_edit->select_all();
} else if (_mode == REPLACE_MODE) {
if (!text.is_empty()) {
_search_text_line_edit->set_text(text);
callable_mp((Control *)_replace_text_line_edit, &Control::grab_focus).call_deferred();
_replace_text_line_edit->select_all();
_on_search_text_modified(text);
} else {
callable_mp((Control *)_search_text_line_edit, &Control::grab_focus).call_deferred();
_search_text_line_edit->select_all();
}
}
}

void FindInFilesDialog::set_replace_text(const String &text) {
Expand Down Expand Up @@ -464,9 +480,6 @@ void FindInFilesDialog::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_VISIBILITY_CHANGED: {
if (is_visible()) {
// Doesn't work more than once if not deferred...
callable_mp((Control *)_search_text_line_edit, &Control::grab_focus).call_deferred();
_search_text_line_edit->select_all();
// Extensions might have changed in the meantime, we clean them and instance them again.
for (int i = 0; i < _filters_container->get_child_count(); i++) {
_filters_container->get_child(i)->queue_free();
Expand Down

0 comments on commit bfd1700

Please sign in to comment.