Merge pull request #22200 from DualMatrix/not_set_focus

Fixed clicking on Find/Replace doesn't set the focus on the text field
This commit is contained in:
Rémi Verschelde 2018-09-18 08:50:20 +02:00 committed by GitHub
commit 05fbe415bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -374,7 +374,7 @@ void FindReplaceBar::_hide_bar() {
void FindReplaceBar::_show_search() {
show();
search_text->grab_focus();
search_text->call_deferred("grab_focus");
if (text_edit->is_selection_active() && !selection_only->is_pressed()) {
search_text->set_text(text_edit->get_selection_text());