diff options
author | Jean-Michel Bernard <jmb462@gmail.com> | 2023-03-12 17:48:37 +0100 |
---|---|---|
committer | Jean-Michel Bernard <jmb462@gmail.com> | 2023-09-11 18:36:40 +0200 |
commit | 67dce301aa79448b29dc418c9122ca08c6f96413 (patch) | |
tree | baf82b27a22abd44df75198f620e7ac5d32cb205 /editor/editor_settings.cpp | |
parent | 221884e6bc260c38f16422081b7d4efd49a71375 (diff) | |
download | redot-engine-67dce301aa79448b29dc418c9122ca08c6f96413.tar.gz |
Add code region folding to CodeEdit
Diffstat (limited to 'editor/editor_settings.cpp')
-rw-r--r-- | editor/editor_settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index e042d8570f..f12972ce87 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -848,6 +848,7 @@ void EditorSettings::_load_godot2_text_editor_theme() { _initial_set("text_editor/theme/highlighting/breakpoint_color", Color(0.9, 0.29, 0.3)); _initial_set("text_editor/theme/highlighting/executing_line_color", Color(0.98, 0.89, 0.27)); _initial_set("text_editor/theme/highlighting/code_folding_color", Color(0.8, 0.8, 0.8, 0.8)); + _initial_set("text_editor/theme/highlighting/folded_code_region_color", Color(0.68, 0.46, 0.77, 0.2)); _initial_set("text_editor/theme/highlighting/search_result_color", Color(0.05, 0.25, 0.05, 1)); _initial_set("text_editor/theme/highlighting/search_result_border_color", Color(0.41, 0.61, 0.91, 0.38)); } |