diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-12-13 21:11:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-13 21:11:22 +0100 |
commit | 1a02aa9b52ee6ac8d8f340e729a4dbe751637966 (patch) | |
tree | 62cf02a725dc7db7bc513bab6c9b96d886250037 /editor/code_editor.cpp | |
parent | 016092181c8b575f342e4abaf40482e953815c11 (diff) | |
parent | 2f31d31c237214587b8cec1dcdd4d713c60f461c (diff) |
Merge pull request #24327 from godotengine/revert-20725-textedit-subtle-indent-guides
Revert "Use more subtle indentation guides in the script editor"
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index a7a51cb93d..a0a8e9459d 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -768,7 +768,6 @@ void CodeTextEditor::update_editor_settings() { 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_indent_guides(EditorSettings::get_singleton()->get("text_editor/indent/draw_indent_guides")); 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")); |