Update framework

This commit is contained in:
Thomas Müller
2017-07-21 17:24:09 +02:00
parent 2cd8f6b30c
commit a7dc8a892b
13 changed files with 14 additions and 14 deletions

View File

@ -517,13 +517,13 @@ namespace osu.Game.Overlays.Profile
protected override bool OnHover(InputState state)
{
FadeColour(hoverColour, 500, EasingTypes.OutQuint);
this.FadeColour(hoverColour, 500, EasingTypes.OutQuint);
return base.OnHover(state);
}
protected override void OnHoverLost(InputState state)
{
FadeColour(Color4.White, 500, EasingTypes.OutQuint);
this.FadeColour(Color4.White, 500, EasingTypes.OutQuint);
base.OnHoverLost(state);
}