Fix layout of profile top header to match web

This commit is contained in:
Joehu 2019-07-02 10:52:24 -07:00
parent a3499a531b
commit d387629e53
1 changed files with 19 additions and 11 deletions

View File

@ -72,18 +72,30 @@ private void load(OsuColour colours)
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
usernameText = new OsuSpriteText
new FillFlowContainer
{
Font = OsuFont.GetFont(size: 24, weight: FontWeight.Regular)
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
usernameText = new OsuSpriteText
{
Font = OsuFont.GetFont(size: 24, weight: FontWeight.Regular)
},
openUserExternally = new ExternalLinkButton
{
Margin = new MarginPadding { Left = 5 },
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
},
}
},
openUserExternally = new ExternalLinkButton
titleText = new OsuSpriteText
{
Margin = new MarginPadding { Left = 5 },
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Regular)
},
}
},
@ -95,10 +107,6 @@ private void load(OsuColour colours)
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
titleText = new OsuSpriteText
{
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Regular)
},
supporterTag = new SupporterIcon
{
Height = 20,