diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-05-24 17:09:46 +0200 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-05-24 17:09:46 +0200 |
commit | 15e9f66a1aca28cda51828a8ab409b905ae6def5 (patch) | |
tree | 235b659eab80f388e10294401c454c035d06ffa2 | |
parent | f7b5fdc923d4064c0c5346a757df098ea7e0cc1d (diff) | |
parent | 6dd538a7ae40333ece7fca8f8786228204156416 (diff) |
Merge pull request #4798 from Paulb23/caret_color_not_setting
Fixed caret colour not changing though properties
-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) ); |