Merge pull request #31032 from KoBeWi/searchlect

Select found text in Script Editor
This commit is contained in:
Rémi Verschelde 2019-08-02 16:05:57 +02:00 committed by GitHub
commit b14f12b571
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,6 +152,7 @@ bool FindReplaceBar::_search(uint32_t p_flags, int p_from_line, int p_from_col)
text_edit->cursor_set_line(line, false);
text_edit->cursor_set_column(col + text.length(), false);
text_edit->center_viewport_to_cursor();
text_edit->select(line, col, line, col + text.length());
}
text_edit->set_search_text(text);