1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 10:42:55 +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> public class ScoreFlowContainer : Container<DrawableScore>
{ {
private readonly FillFlowContainer<DrawableScore> scores; private FillFlowContainer<DrawableScore> scores;
private readonly OsuClickableContainer showMoreText; private OsuClickableContainer showMoreText;
protected override Container<DrawableScore> Content => scores; protected override Container<DrawableScore> Content => scores;
public ScoreFlowContainer() protected override void LoadComplete()
{ {
InternalChild = new FillFlowContainer InternalChild = new FillFlowContainer
{ {