diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-12-17 01:53:34 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-12-17 01:53:34 -0300 |
commit | c8b2a5f64a44484b566bc1e2aa12aa36850f107e (patch) | |
tree | 2b4940b67aa018161e5d55887a3334c696752d24 /scene/resources/default_theme | |
parent | fd4648c081afa565cb20c923c4e3c94d88e71e4f (diff) |
-added brace matching to go with the new code completion
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 d10bb37f60..f27cfb9511 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -331,6 +331,7 @@ void make_default_theme() { t->set_color("current_line_color","TextEdit", Color(0.3,0.5,0.8,0.15) ); t->set_color("cursor_color","TextEdit", control_font_color ); t->set_color("symbol_color","TextEdit", control_font_color_hover ); + t->set_color("brace_mismatch_color","TextEdit", Color(1,0.2,0.2) ); t->set_constant("line_spacing","TextEdit",1 ); t->set_stylebox("scroll","HScrollBar", make_stylebox( hscroll_bg_png,3,3,3,3,0,0,0,0) ); |