diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index fa48c88be34..25a9cd0813f 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -803,11 +803,9 @@ void CodeTextEditor::_line_col_changed() { } StringBuilder sb; - sb.append("("); - sb.append(itos(text_editor->cursor_get_line() + 1).lpad(3)); - sb.append(","); + sb.append(itos(text_editor->cursor_get_line() + 1).lpad(4)); + sb.append(" : "); sb.append(itos(positional_column + 1).lpad(3)); - sb.append(")"); line_and_col_txt->set_text(sb.as_string()); }