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

Prevent error emitting when clicking on error in code text editor

This commit is contained in:
Yuri Roubinsky
2022-01-05 08:55:33 +03:00
parent 5ce54ce142
commit eb95cdd690

View File

@@ -1548,7 +1548,9 @@ void CodeTextEditor::set_error_pos(int p_line, int p_column) {
void CodeTextEditor::goto_error() {
if (!error->get_text().is_empty()) {
text_editor->unfold_line(error_line);
if (text_editor->get_line_count() != error_line) {
text_editor->unfold_line(error_line);
}
text_editor->set_caret_line(error_line);
text_editor->set_caret_column(error_column);
text_editor->center_viewport_to_caret();