Fix goto line issues in code editor

This commit is contained in:
kit 2024-07-05 19:27:19 -04:00
parent 3e0c10d393
commit 06b17a4d2f
9 changed files with 38 additions and 45 deletions

View file

@ -304,8 +304,8 @@ void TextEditor::tag_saved_version() {
code_editor->get_text_editor()->tag_saved_version();
}
void TextEditor::goto_line(int p_line, bool p_with_error) {
code_editor->goto_line(p_line);
void TextEditor::goto_line(int p_line, int p_column) {
code_editor->goto_line(p_line, p_column);
}
void TextEditor::goto_line_selection(int p_line, int p_begin, int p_end) {