mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
[TextEdit] Add support for optional wrapped line indentation.
This commit is contained in:
parent
81f3d43cc1
commit
dad4aae386
9 changed files with 122 additions and 10 deletions
|
@ -1039,6 +1039,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"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue