diff options
author | Waldson PatrĂcio <waldsonpatricio@gmail.com> | 2017-12-06 16:36:44 -0300 |
---|---|---|
committer | Waldson PatrĂcio <waldsonpatricio@gmail.com> | 2017-12-06 16:36:44 -0300 |
commit | 62b0799ba02acd8a025237eccf3c975d1dfbecab (patch) | |
tree | 1abb25daa3702f1b6ed83d3ae01ab48d88db8157 | |
parent | a8ae46e1431a25ced8565db39e44e068b8815c21 (diff) |
Fix missing stylebox for LinkButton's hover states
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index c5feecd7c4..819d16f61f 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -257,6 +257,8 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const // LinkButton + theme->set_stylebox("focus", "LinkButton", focus); + theme->set_font("font", "LinkButton", default_font); theme->set_color("font_color", "LinkButton", control_font_color); |