Added missing LinkButton colors in Editor Theme

(cherry picked from commit 0671d7b276)
This commit is contained in:
Yuri Sizov 2020-04-05 22:57:12 +03:00 committed by Rémi Verschelde
parent f10d2affb0
commit ad1c7a53d9
1 changed files with 3 additions and 0 deletions

View File

@ -993,6 +993,9 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
// LinkButton
theme->set_stylebox("focus", "LinkButton", style_empty);
theme->set_color("font_color", "LinkButton", font_color);
theme->set_color("font_color_hover", "LinkButton", font_color_hl);
theme->set_color("font_color_pressed", "LinkButton", accent_color);
theme->set_color("font_color_disabled", "LinkButton", font_color_disabled);
// TooltipPanel
Ref<StyleBoxFlat> style_tooltip = style_popup->duplicate();