diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-05 09:55:51 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-05 09:55:51 +0100 |
commit | 2d408f48e71dd05b4fa8390a6dc9ba5f1fc7ac61 (patch) | |
tree | c0b753c59c87104037dc3f250b0e99492158428a /editor/code_editor.cpp | |
parent | 16fa6bc44bfa60ddb56b553c4bbb0ccef9164e7e (diff) | |
parent | dad4aae386c927fb6dbae3e7ed45fb11082c9180 (diff) | |
download | redot-engine-2d408f48e71dd05b4fa8390a6dc9ba5f1fc7ac61.tar.gz |
Merge pull request #88546 from bruvzg/indent_wrap
[TextEdit] Add support for optional wrapped line indentation.
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 08299da260..6c16951186 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1036,6 +1036,7 @@ void CodeTextEditor::update_editor_settings() { set_indent_using_spaces(EDITOR_GET("text_editor/behavior/indent/type")); text_editor->set_indent_size(EDITOR_GET("text_editor/behavior/indent/size")); text_editor->set_auto_indent_enabled(EDITOR_GET("text_editor/behavior/indent/auto_indent")); + text_editor->set_indent_wrapped_lines(EDITOR_GET("text_editor/behavior/indent/indent_wrapped_lines")); // Completion text_editor->set_auto_brace_completion_enabled(EDITOR_GET("text_editor/completion/auto_brace_complete")); |