diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2017-12-04 21:48:20 +0000 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2017-12-07 19:17:43 +0000 |
commit | 48ad133cf9e41f6f4517b7865b9f377ac524eca1 (patch) | |
tree | 81b9e7fc7e6802fdb6d1b603c37085056febc04f /scene/resources/default_theme | |
parent | 209cb3830c605edef494d45253b89bd76b3bbbc3 (diff) |
Changed current line draw order and added code folding color
Diffstat (limited to 'scene/resources/default_theme')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 651b7543c6..bb2c8750e3 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -468,6 +468,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_color("selection_color", "TextEdit", font_color_selection); theme->set_color("mark_color", "TextEdit", Color(1.0, 0.4, 0.4, 0.4)); theme->set_color("breakpoint_color", "TextEdit", Color(0.8, 0.8, 0.4, 0.2)); + theme->set_color("code_folding_color", "TextEdit", Color(0.8, 0.8, 0.8, 0.8)); theme->set_color("current_line_color", "TextEdit", Color(0.25, 0.25, 0.26, 0.8)); theme->set_color("caret_color", "TextEdit", control_font_color); theme->set_color("caret_background_color", "TextEdit", Color::html("000000")); |