diff options
author | Mariam Naiga <mbukenya2017@my.fit.edu> | 2019-04-03 17:59:45 -0400 |
---|---|---|
committer | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-07 12:57:07 +0200 |
commit | d179cbc3c2090c32c42dc5b1313a8f8b554f3b12 (patch) | |
tree | ab809d146dbe3ac773af9f44fca054fadfece40c /editor | |
parent | 9984ebba173194c68443c9d9a8020800144488e3 (diff) |
Fix cursor color in Label/RTL in editor
Fixes #26246.
Diffstat (limited to 'editor')
-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 |