diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2016-05-24 15:21:34 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2016-05-24 15:21:34 +0100 |
commit | 6dd538a7ae40333ece7fca8f8786228204156416 (patch) | |
tree | 2cea63dbfc458f7b4dc7c9f5c28500eb92b10f46 /scene/resources/default_theme | |
parent | b777b32470fc7cba345f3ff2ee419074104f8f9b (diff) |
Fixed caret color not changing though properties
Diffstat (limited to 'scene/resources/default_theme')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 0c4d8ae841..cd90bf52b6 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -468,7 +468,7 @@ void make_default_theme() { t->set_color("mark_color","TextEdit", Color(1.0,0.4,0.4,0.4) ); t->set_color("breakpoint_color","TextEdit", Color(0.8,0.8,0.4,0.2) ); t->set_color("current_line_color","TextEdit", Color(0.25,0.25,0.26,0.8) ); - t->set_color("cursor_color","TextEdit", control_font_color ); + t->set_color("caret_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) ); |