diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-09 01:20:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-09 01:20:58 +0100 |
commit | f111768ba9345e092d4e4878a32b71952ce1f960 (patch) | |
tree | abc0ee5102e7fb421918187d8edf4133f5aa0518 /scene/resources/default_theme/default_theme.cpp | |
parent | b480140ce162414582aa185f4378a133684179b7 (diff) | |
parent | 839b8cae1e33b8fa656c5249b5cf4617148fef4e (diff) |
Merge pull request #57813 from MisoMosiSpy/disabled_icons
Diffstat (limited to 'scene/resources/default_theme/default_theme.cpp')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 670b141080..c92a46a98c 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -175,7 +175,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, Ref<Te theme->set_color("icon_hover_color", "Button", Color(1, 1, 1, 1)); theme->set_color("icon_hover_pressed_color", "Button", Color(1, 1, 1, 1)); theme->set_color("icon_focus_color", "Button", Color(1, 1, 1, 1)); - theme->set_color("icon_disabled_color", "Button", Color(1, 1, 1, 1)); + theme->set_color("icon_disabled_color", "Button", Color(1, 1, 1, 0.4)); theme->set_constant("hseparation", "Button", 2 * scale); |