summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornonunknown <nonunknown777@gmail.com>2021-09-21 12:59:01 -0300
committernonunknown <nonunknown777@gmail.com>2021-09-21 12:59:01 -0300
commit5489f43844de5eb158ee31dd17217fbc53a772ef (patch)
tree924ed6a2d5e7766124f4df1166f8d8a7aa01ba00
parent91960b7b81523cb545b2dfb47c235cf21dd460f3 (diff)
Fix alpha typo in code completion color
-rw-r--r--editor/editor_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp
index a255847a56..740e73e18c 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));