Fix weird transition

This commit is contained in:
Dean Herbert 2019-03-19 16:10:28 +09:00
parent 83f3d3abde
commit d2007cfb38
1 changed files with 4 additions and 1 deletions

View File

@ -114,7 +114,7 @@ private void load(OsuColour colours, IAPIProvider api)
currentUser.BindTo(api.LocalUser);
currentUser.BindValueChanged(e =>
{
supportFlow.Children.ForEach(d => d.FadeOut(500, Easing.OutQuint).Expire());
supportFlow.Children.ForEach(d => d.FadeOut().Expire());
if (e.NewValue.IsSupporter)
{
@ -137,6 +137,9 @@ private void load(OsuColour colours, IAPIProvider api)
if (IsLoaded)
animateHeart();
if (supportFlow.IsPresent)
supportFlow.FadeInFromZero(500);
}, true);
}