Fix Find in Files Not Working Properly
When using the "Find in Files" option to search in non-script files (e.g. .tscn), the search does not work properly.
This commit is contained in:
parent
52cfb5f579
commit
0d8c7c30a0
3 changed files with 26 additions and 4 deletions
|
|
@ -313,6 +313,11 @@ void TextEditor::goto_line(int p_line, bool p_with_error) {
|
|||
code_editor->goto_line(p_line);
|
||||
}
|
||||
|
||||
void TextEditor::goto_line_selection(int p_line, int p_begin, int p_end) {
|
||||
|
||||
code_editor->goto_line_selection(p_line, p_begin, p_end);
|
||||
}
|
||||
|
||||
void TextEditor::set_executing_line(int p_line) {
|
||||
|
||||
code_editor->set_executing_line(p_line);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue