1
0
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:
Unknown
2018-05-03 18:03:20 +01:00
parent b774156729
commit 4e26e5e268
3 changed files with 20 additions and 1 deletions

View File

@@ -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;