diff options
author | MinusKube <minuskube@gmail.com> | 2022-06-27 11:27:17 +0200 |
---|---|---|
committer | MinusKube <minuskube@gmail.com> | 2022-07-03 23:47:52 +0200 |
commit | 336400dc42de45ec6a99e08d54a84aa3d7303a96 (patch) | |
tree | 86a80105df81b35b9c48d4edb34c43bec28ebf4c /scene/resources/default_theme | |
parent | 898e09e2e63c221b861cc64b12adc80dc48ce5eb (diff) |
Add the ability to drag the code completion scrollbar using the mouse click
Diffstat (limited to 'scene/resources/default_theme')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 401aeb4889..e0e2641f16 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -467,6 +467,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_color("completion_selected_color", "CodeEdit", Color(0.26, 0.26, 0.27)); theme->set_color("completion_existing_color", "CodeEdit", Color(0.87, 0.87, 0.87, 0.13)); theme->set_color("completion_scroll_color", "CodeEdit", control_font_pressed_color * Color(1, 1, 1, 0.29)); + theme->set_color("completion_scroll_hovered_color", "CodeEdit", control_font_pressed_color * Color(1, 1, 1, 0.4)); theme->set_color("completion_font_color", "CodeEdit", Color(0.67, 0.67, 0.67)); theme->set_color("font_color", "CodeEdit", control_font_color); theme->set_color("font_selected_color", "CodeEdit", Color(0, 0, 0)); |