1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

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:
Emmanuel Barroga
2019-08-06 23:41:10 -07:00
parent 52cfb5f579
commit 0d8c7c30a0
3 changed files with 26 additions and 4 deletions

View File

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