Formatting fixes

This commit is contained in:
Dean Herbert
2018-06-01 15:45:09 +09:00
parent c5a3eff182
commit b9c601074d
2 changed files with 6 additions and 16 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Screens.Multi.Components
public int Count
{
set { count.Text = value.ToString(); }
set => count.Text = value.ToString();
}
public int? Max
@ -31,8 +31,8 @@ namespace osu.Game.Screens.Multi.Components
else
{
slash.FadeIn(transition_duration);
max.FadeIn(transition_duration);
max.Text = value.ToString();
max.FadeIn(transition_duration);
}
}
}