1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00

move another thing to LoadComplete instead of the constructor

This commit is contained in:
Jorolf 2017-08-09 22:37:05 +02:00
parent bb8374b4fe
commit acc9b20b0f

View File

@ -116,12 +116,12 @@ namespace osu.Game.Overlays.Profile.Sections
public class ScoreFlowContainer : Container<DrawableScore>
{
private readonly FillFlowContainer<DrawableScore> scores;
private readonly OsuClickableContainer showMoreText;
private FillFlowContainer<DrawableScore> scores;
private OsuClickableContainer showMoreText;
protected override Container<DrawableScore> Content => scores;
public ScoreFlowContainer()
protected override void LoadComplete()
{
InternalChild = new FillFlowContainer
{