summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-05-16 01:36:01 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2024-03-22 00:17:32 +0100
commit44de95e18f8bbac111e500c52808155daf5d9f3c (patch)
tree2a9a40febfe8262f167466603aaa7a4b7fff180d /editor/code_editor.cpp
parentfe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff)
downloadredot-engine-44de95e18f8bbac111e500c52808155daf5d9f3c.tar.gz
Improve the editor native shader source visualizer
- Use CodeEdit to enable features such as line numbers and minimap. - Enable syntax highlighting. - Use a fixed-width font. - Use the script editor settings.
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 6c16951186..59ccd30366 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -1032,7 +1032,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"));