summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-03-24 01:21:42 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-03-24 01:21:42 +0100
commit77cc2501e170701a3db6baf101227ea20de27248 (patch)
treeee2129c6bf57bcfb2cd2671c702cdcc98f26016e /editor/code_editor.cpp
parent9d8697ab01a3010e015403328a00459c5903c8a8 (diff)
parent44de95e18f8bbac111e500c52808155daf5d9f3c (diff)
downloadredot-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.cpp2
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"));