diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-21 21:04:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 21:04:52 +0200 |
commit | 726b826b310900ff475122ed65934d2499b8db4d (patch) | |
tree | 08ed0212b397c33d95523db08d8f8df30de6d27b | |
parent | 679f70c1e1b4500f3fc5cf81bedc6e137b8184a5 (diff) | |
parent | 5489f43844de5eb158ee31dd17217fbc53a772ef (diff) |
Merge pull request #52901 from nonunknown/master
-rw-r--r-- | editor/editor_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index e3fc912e3c..1820804cfe 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -710,7 +710,7 @@ void EditorSettings::_load_godot2_text_editor_theme() { _initial_set("text_editor/theme/highlighting/background_color", Color(0.13, 0.12, 0.15)); _initial_set("text_editor/theme/highlighting/completion_background_color", Color(0.17, 0.16, 0.2)); _initial_set("text_editor/theme/highlighting/completion_selected_color", Color(0.26, 0.26, 0.27)); - _initial_set("text_editor/theme/highlighting/completion_existing_color", Color(0.13, 0.87, 0.87, 0.87)); + _initial_set("text_editor/theme/highlighting/completion_existing_color", Color(0.87, 0.87, 0.87, 0.13)); _initial_set("text_editor/theme/highlighting/completion_scroll_color", Color(1, 1, 1)); _initial_set("text_editor/theme/highlighting/completion_font_color", Color(0.67, 0.67, 0.67)); _initial_set("text_editor/theme/highlighting/text_color", Color(0.67, 0.67, 0.67)); |