1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 23:22:55 +08:00

Remove explicit padding on icon

This commit is contained in:
smoogipoo 2017-12-15 13:01:06 +09:00
parent f329b1ed72
commit 33654ee5b4

View File

@ -246,35 +246,43 @@ namespace osu.Game.Screens.Select
{
TooltipText = statistic.Name;
AutoSizeAxes = Axes.Both;
Padding = new MarginPadding { Left = 16 };
Children = new Drawable[]
{
new SpriteIcon
new Container
{
Anchor = Anchor.CentreLeft,
Colour = OsuColour.FromHex(@"441288"),
Icon = FontAwesome.fa_square,
Origin = Anchor.Centre,
Rotation = 45,
Size = new Vector2(20),
},
new SpriteIcon
{
Anchor = Anchor.CentreLeft,
Colour = OsuColour.FromHex(@"f7dd55"),
Icon = statistic.Icon,
Origin = Anchor.Centre,
Scale = new Vector2(0.8f),
Origin = Anchor.CentreLeft,
Size = new Vector2(20),
Children = new[]
{
new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.FromHex(@"441288"),
Icon = FontAwesome.fa_square,
Rotation = 45,
},
new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Scale = new Vector2(0.8f),
Colour = OsuColour.FromHex(@"f7dd55"),
Icon = statistic.Icon,
},
}
},
new OsuSpriteText
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Colour = new Color4(255, 221, 85, 255),
Font = @"Exo2.0-Bold",
Margin = new MarginPadding { Left = 13 },
Origin = Anchor.CentreLeft,
Margin = new MarginPadding { Left = 30 },
Text = statistic.Content,
TextSize = 17,
}