mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 19:22:54 +08:00
Merge pull request #10185 from Joehuu/fix-hovered-channel-tabs-color-when-unselected
Fix hovered tab items not showing hover state when deselected
This commit is contained in:
commit
72a173d4fc
@ -123,8 +123,8 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
|
|
||||||
protected void FadeUnhovered()
|
protected void FadeUnhovered()
|
||||||
{
|
{
|
||||||
Bar.FadeOut(transition_length, Easing.OutQuint);
|
Bar.FadeTo(IsHovered ? 1 : 0, transition_length, Easing.OutQuint);
|
||||||
Text.FadeColour(AccentColour, transition_length, Easing.OutQuint);
|
Text.FadeColour(IsHovered ? Color4.White : AccentColour, transition_length, Easing.OutQuint);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override bool OnHover(HoverEvent e)
|
protected override bool OnHover(HoverEvent e)
|
||||||
|
@ -211,7 +211,7 @@ namespace osu.Game.Overlays.Chat.Tabs
|
|||||||
|
|
||||||
TweenEdgeEffectTo(deactivateEdgeEffect, TRANSITION_LENGTH);
|
TweenEdgeEffectTo(deactivateEdgeEffect, TRANSITION_LENGTH);
|
||||||
|
|
||||||
box.FadeColour(BackgroundInactive, TRANSITION_LENGTH, Easing.OutQuint);
|
box.FadeColour(IsHovered ? backgroundHover : BackgroundInactive, TRANSITION_LENGTH, Easing.OutQuint);
|
||||||
highlightBox.FadeOut(TRANSITION_LENGTH, Easing.OutQuint);
|
highlightBox.FadeOut(TRANSITION_LENGTH, Easing.OutQuint);
|
||||||
|
|
||||||
Text.Font = Text.Font.With(weight: FontWeight.Medium);
|
Text.Font = Text.Font.With(weight: FontWeight.Medium);
|
||||||
|
Loading…
Reference in New Issue
Block a user