1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 21:03:08 +08:00

Remove unnecessary length specifications

This commit is contained in:
Dean Herbert 2020-01-30 11:00:14 +09:00
parent 37ecf8a060
commit f72de235cc

View File

@ -80,9 +80,9 @@ namespace osu.Game.Screens.Select
MultiplierText.FadeColour(Color4.White, 200);
if (Current.Value?.Count > 0)
modDisplay.FadeIn(0);
modDisplay.FadeIn();
else
modDisplay.FadeOut(0);
modDisplay.FadeOut();
}
private class FooterModDisplay : ModDisplay