diff options
author | Rindbee <idleman@yeah.net> | 2023-04-24 17:11:33 +0800 |
---|---|---|
committer | Rindbee <idleman@yeah.net> | 2023-04-24 17:11:38 +0800 |
commit | 23d6225c1e59f33cc6cfe0df3a00961c0c93155f (patch) | |
tree | d8bc96f6aff2ce6245aa6e1757b7caa620a01a52 | |
parent | f178cad04a39bc40e759ef50675606b12bb07fff (diff) | |
download | redot-engine-23d6225c1e59f33cc6cfe0df3a00961c0c93155f.tar.gz |
Fix `line_spacing` in code editor will not take effect immediately on change
Previously, in CodeTextEditor, `line_spacing` was forgotten to update
when the editor setting property changed.
-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 10c173ffe8..61df3a977a 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1049,6 +1049,7 @@ void CodeTextEditor::update_editor_settings() { // Appearance: Whitespace text_editor->set_draw_tabs(EDITOR_GET("text_editor/appearance/whitespace/draw_tabs")); text_editor->set_draw_spaces(EDITOR_GET("text_editor/appearance/whitespace/draw_spaces")); + text_editor->add_theme_constant_override("line_spacing", EDITOR_GET("text_editor/appearance/whitespace/line_spacing")); // Behavior: Navigation text_editor->set_scroll_past_end_of_file_enabled(EDITOR_GET("text_editor/behavior/navigation/scroll_past_end_of_file")); |