1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-17 16:42:53 +08:00

More formatting

This commit is contained in:
DrabWeb 2017-03-22 09:35:08 -03:00
parent 5ebbc2c0ba
commit 8703e5a962

View File

@ -51,16 +51,11 @@ namespace osu.Game.Modes.UI
Margin = new MarginPadding { Right = 5 }, Margin = new MarginPadding { Right = 5 },
}; };
protected override SongProgress CreateProgress() protected override SongProgress CreateProgress() => new SongProgress()
{ {
var p = new SongProgress() Anchor = Anchor.BottomLeft,
{ Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft, RelativeSizeAxes = Axes.X,
Origin = Anchor.BottomLeft, };
RelativeSizeAxes = Axes.X,
};
return p;
}
} }
} }