diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:21:42 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:21:42 +0100 |
commit | 77cc2501e170701a3db6baf101227ea20de27248 (patch) | |
tree | ee2129c6bf57bcfb2cd2671c702cdcc98f26016e /editor/code_editor.cpp | |
parent | 9d8697ab01a3010e015403328a00459c5903c8a8 (diff) | |
parent | 44de95e18f8bbac111e500c52808155daf5d9f3c (diff) | |
download | redot-engine-77cc2501e170701a3db6baf101227ea20de27248.tar.gz |
Merge pull request #89690 from Calinou/editor-improve-native-shader-inspector
Improve the editor native shader source visualizer
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 0e369c91e1..bfad38d341 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1038,7 +1038,7 @@ void CodeTextEditor::update_editor_settings() { text_editor->set_v_scroll_speed(EDITOR_GET("text_editor/behavior/navigation/v_scroll_speed")); text_editor->set_drag_and_drop_selection_enabled(EDITOR_GET("text_editor/behavior/navigation/drag_and_drop_selection")); - // Behavior: indent + // Behavior: Indent 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")); |