You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Script Editor now displays positional column
This solves #17931 and makes the script editor consistent with other text editors(Sublime, Gedit, Vim) in displaying the position rather than the raw number of characters.
This commit is contained in:
@@ -4978,6 +4978,11 @@ void TextEdit::set_indent_size(const int p_size) {
|
||||
update();
|
||||
}
|
||||
|
||||
int TextEdit::get_indent_size() {
|
||||
|
||||
return indent_size;
|
||||
}
|
||||
|
||||
void TextEdit::set_draw_tabs(bool p_draw) {
|
||||
|
||||
draw_tabs = p_draw;
|
||||
|
||||
Reference in New Issue
Block a user