Review Changes

This commit is contained in:
John Neijzen
2017-06-07 22:00:14 +08:00
parent f9c466eee9
commit aa3a231763
7 changed files with 21 additions and 33 deletions

View File

@ -82,10 +82,7 @@ namespace osu.Game.Screens.Tournament
private ScrollState _scrollState;
private ScrollState scrollState
{
get
{
return _scrollState;
}
get { return _scrollState; }
set
{
@ -265,7 +262,7 @@ namespace osu.Game.Screens.Tournament
else
{
c.MoveToX(pos, 100);
c.FadeTo(1.0f - (Math.Abs(pos - (DrawWidth / 2f)) / (DrawWidth / 2.5f)), 100);
c.FadeTo(1.0f - Math.Abs(pos - DrawWidth / 2f) / (DrawWidth / 2.5f), 100);
}
pos += ScrollingTeam.WIDTH;
@ -332,10 +329,7 @@ namespace osu.Game.Screens.Tournament
private bool selected;
public bool Selected
{
get
{
return selected;
}
get { return selected; }
set
{