diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-04 10:13:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 10:13:20 +0200 |
commit | 1d06fec5354d45c21414bf4b00435868444636cb (patch) | |
tree | 4e43c777fe9e3d165ed955cfdcccf2a5b1eb84e4 /editor/editor_settings.cpp | |
parent | ba8e7efc2bba979e2d2be046b5d975dbd7846d35 (diff) | |
parent | 336400dc42de45ec6a99e08d54a84aa3d7303a96 (diff) |
Merge pull request #62448 from MinusKube/completion-scroll-click
Add the ability to drag the code completion scrollbar using the mouse click
Diffstat (limited to 'editor/editor_settings.cpp')
-rw-r--r-- | editor/editor_settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index ad9c547693..fbdc1c0a0c 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -763,6 +763,7 @@ void EditorSettings::_load_godot2_text_editor_theme() { _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.87, 0.87, 0.87, 0.13)); _initial_set("text_editor/theme/highlighting/completion_scroll_color", Color(1, 1, 1, 0.29)); + _initial_set("text_editor/theme/highlighting/completion_scroll_hovered_color", Color(1, 1, 1, 0.4)); _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)); _initial_set("text_editor/theme/highlighting/line_number_color", Color(0.67, 0.67, 0.67, 0.4)); |