diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-01-27 10:22:23 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-01-27 10:44:53 +0300 |
commit | 64971bcc8a5351c4a3f01888abf2a28d15f5b755 (patch) | |
tree | e5fb5cebcfb50fefb317af0c8dc6c3734a155933 /scene/resources/default_theme/default_theme.cpp | |
parent | 1f5669d8d4a9515d605ad9fc55313fc27bd6d250 (diff) | |
download | redot-engine-64971bcc8a5351c4a3f01888abf2a28d15f5b755.tar.gz |
Added missed Button `font_hover_pressed_color` style
Diffstat (limited to 'scene/resources/default_theme/default_theme.cpp')
-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 80ecff52f1..242c3b8ec4 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -188,6 +188,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_color("font_color", "Button", control_font_color); theme->set_color("font_pressed_color", "Button", control_font_pressed_color); theme->set_color("font_hover_color", "Button", control_font_hover_color); + theme->set_color("font_hover_pressed_color", "Button", control_font_pressed_color); theme->set_color("font_disabled_color", "Button", control_font_disabled_color); theme->set_color("font_outline_color", "Button", Color(1, 1, 1)); |