Fixed clicking on Find/Replace doesn't set the focus on the text field

Fixed clicking on Find/Replace doesn't set the focus on the text field
This commit is contained in:
DualMatrix 2018-09-18 00:10:23 +02:00
parent 5614692a1a
commit e10ca7b824

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());