diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-08 10:05:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 10:05:15 +0200 |
commit | b07eab734a363a2867774e46d9e7ec583af902ef (patch) | |
tree | 5ce88044e20f9ea4f7e516d6c1396d17c3d61e2c | |
parent | de33c37196f0ddec675640fcfeaaa46a17d9ebf2 (diff) | |
parent | d179cbc3c2090c32c42dc5b1313a8f8b554f3b12 (diff) |
Merge pull request #27660 from cse2410-team2/Issue#26246
Fix Cursor Color in the Label/RichTextLabel
-rw-r--r-- | editor/editor_themes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 0df932cd62..335e3fcd29 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -832,7 +832,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) { theme->set_constant("side_margin", "TabContainer", 0); theme->set_icon("tab", "TextEdit", theme->get_icon("GuiTab", "EditorIcons")); theme->set_color("font_color", "TextEdit", font_color); - theme->set_color("caret_color", "TextEdit", highlight_color); + theme->set_color("caret_color", "TextEdit", font_color); theme->set_color("selection_color", "TextEdit", font_color_selection); // H/VSplitContainer |