aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
authorPaulb232016-04-05 17:06:56 +0100
committerPaulb232016-04-05 17:06:56 +0100
commitc7519f091d6c4bd3f7edc1b8213fb4aa418fad3a (patch)
treefd3a265a6e2b9f3f798ab6ab7a8c7cd920b247e6 /tools/editor/plugins/script_editor_plugin.cpp
parent868872392379aa5c90c3d199a2cfee32b8f593f2 (diff)
downloadgodot-c7519f091d6c4bd3f7edc1b8213fb4aa418fad3a.tar.gz
godot-c7519f091d6c4bd3f7edc1b8213fb4aa418fad3a.tar.zst
godot-c7519f091d6c4bd3f7edc1b8213fb4aa418fad3a.zip
Ability to change the caret color
Diffstat (limited to 'tools/editor/plugins/script_editor_plugin.cpp')
-rw-r--r--tools/editor/plugins/script_editor_plugin.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp
index bef1a8e02..d6d5afd16 100644
--- a/tools/editor/plugins/script_editor_plugin.cpp
+++ b/tools/editor/plugins/script_editor_plugin.cpp
@@ -288,6 +288,7 @@ void ScriptTextEditor::_load_theme_settings() {
get_text_edit()->set_custom_bg_color(EDITOR_DEF("text_editor/background_color",Color(0,0,0,0)));
get_text_edit()->add_color_override("font_color",EDITOR_DEF("text_editor/text_color",Color(0,0,0)));
+ get_text_edit()->add_color_override("caret_color",EDITOR_DEF("text_editor/caret_color",Color(0,0,0)));
get_text_edit()->add_color_override("font_selected_color",EDITOR_DEF("text_editor/text_selected_color",Color(1,1,1)));
get_text_edit()->add_color_override("selection_color",EDITOR_DEF("text_editor/selection_color",Color(0.2,0.2,1)));
get_text_edit()->add_color_override("brace_mismatch_color",EDITOR_DEF("text_editor/brace_mismatch_color",Color(1,0.2,0.2)));