aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins
diff options
context:
space:
mode:
authorRémi Verschelde2017-02-02 08:12:46 +0100
committerGitHub2017-02-02 08:12:46 +0100
commit39f11ffc5145a534466b3be2651852a828e59707 (patch)
tree3e5f9555d107556da5308c7720499c3cd80de546 /tools/editor/plugins
parentaf6d59eed6a09bfd68ffbecb751f80ac49e5604c (diff)
parent6b42cd5fe637d6d0fe30fa397eca659d295ad956 (diff)
downloadgodot-39f11ffc5145a534466b3be2651852a828e59707.tar.gz
godot-39f11ffc5145a534466b3be2651852a828e59707.tar.zst
godot-39f11ffc5145a534466b3be2651852a828e59707.zip
Merge pull request #7666 from Paulb23/line_length_guideline
Fixed line lenght guideline, and added colour option
Diffstat (limited to 'tools/editor/plugins')
-rw-r--r--tools/editor/plugins/script_text_editor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/plugins/script_text_editor.cpp b/tools/editor/plugins/script_text_editor.cpp
index e26a3b23b..9ec626641 100644
--- a/tools/editor/plugins/script_text_editor.cpp
+++ b/tools/editor/plugins/script_text_editor.cpp
@@ -115,6 +115,7 @@ void ScriptTextEditor::_load_theme_settings() {
text_edit->add_color_override("selection_color",EDITOR_DEF("text_editor/highlighting/selection_color",Color(0.2,0.2,1)));
text_edit->add_color_override("brace_mismatch_color",EDITOR_DEF("text_editor/highlighting/brace_mismatch_color",Color(1,0.2,0.2)));
text_edit->add_color_override("current_line_color",EDITOR_DEF("text_editor/highlighting/current_line_color",Color(0.3,0.5,0.8,0.15)));
+ text_edit->add_color_override("line_length_guideline_color", EDITOR_DEF("text_editor/highlighting/line_length_guideline_color", Color(0,0,0)));
text_edit->add_color_override("word_highlighted_color",EDITOR_DEF("text_editor/highlighting/word_highlighted_color",Color(0.8,0.9,0.9,0.15)));
text_edit->add_color_override("number_color",EDITOR_DEF("text_editor/highlighting/number_color",Color(0.9,0.6,0.0,2)));
text_edit->add_color_override("function_color",EDITOR_DEF("text_editor/highlighting/function_color",Color(0.4,0.6,0.8)));