diff options
| author | Paulb23 | 2017-08-31 19:35:15 +0100 |
|---|---|---|
| committer | Paulb23 | 2017-08-31 19:42:47 +0100 |
| commit | d586b98a2028cfb640be6a3c2fb7035539af8945 (patch) | |
| tree | d565721a58f36f42d0480117c16b4343aac8034c /editor/code_editor.cpp | |
| parent | 4722593448b93e34d84a55010c10770c2d12e223 (diff) | |
| download | godot-d586b98a2028cfb640be6a3c2fb7035539af8945.tar.gz godot-d586b98a2028cfb640be6a3c2fb7035539af8945.tar.zst godot-d586b98a2028cfb640be6a3c2fb7035539af8945.zip | |
Diffstat (limited to 'editor/code_editor.cpp')
| -rw-r--r-- | editor/code_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index e09145c05..8c153d274 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1079,6 +1079,7 @@ void CodeTextEditor::update_editor_settings() { text_editor->set_scroll_pass_end_of_file(EditorSettings::get_singleton()->get("text_editor/cursor/scroll_past_end_of_file")); text_editor->set_indent_using_spaces(EditorSettings::get_singleton()->get("text_editor/indent/type")); text_editor->set_indent_size(EditorSettings::get_singleton()->get("text_editor/indent/size")); + text_editor->set_auto_indent(EditorSettings::get_singleton()->get("text_editor/indent/auto_indent")); text_editor->set_draw_tabs(EditorSettings::get_singleton()->get("text_editor/indent/draw_tabs")); text_editor->set_show_line_numbers(EditorSettings::get_singleton()->get("text_editor/line_numbers/show_line_numbers")); text_editor->set_line_numbers_zero_padded(EditorSettings::get_singleton()->get("text_editor/line_numbers/line_numbers_zero_padded")); |
