This commit is contained in:
DrabWeb
2017-03-23 00:29:28 -03:00
parent c173c4b7ee
commit 87b8015e8f
2 changed files with 36 additions and 25 deletions

View File

@ -9,19 +9,23 @@ namespace osu.Game.Screens.Select
{
public class BeatmapDetailArea : Container
{
private Container content;
protected override Container<Drawable> Content => content;
public BeatmapDetailArea()
{
Children = new Drawable[]
AddInternal(new Drawable[]
{
new BeatmapDetailAreaTabControl
{
RelativeSizeAxes = Axes.X,
},
new Container
content = new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = BeatmapDetailAreaTabControl.HEIGHT },
},
};
});
}
}
}