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

Merge pull request #106683 from dalexeev/gds-remove-leftmost-rightmost-column

GDScript: Remove `leftmost_column` and `rightmost_column` fields
This commit is contained in:
Rémi Verschelde
2025-06-05 13:12:02 +02:00
11 changed files with 37 additions and 104 deletions

View File

@@ -79,7 +79,7 @@ void GDScriptCompiler::_set_error(const String &p_error, const GDScriptParser::N
error = p_error;
if (p_node) {
err_line = p_node->start_line;
err_column = p_node->leftmost_column;
err_column = p_node->start_column;
} else {
err_line = 0;
err_column = 0;