1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:07:25 +08:00

Fix weird transition

This commit is contained in:
Dean Herbert 2019-03-19 16:10:28 +09:00
parent 83f3d3abde
commit d2007cfb38

View File

@ -114,7 +114,7 @@ namespace osu.Game.Screens.Menu
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 @@ namespace osu.Game.Screens.Menu
if (IsLoaded)
animateHeart();
if (supportFlow.IsPresent)
supportFlow.FadeInFromZero(500);
}, true);
}