Revert "Use same size labels from song select"

This reverts commit 7077e405ab.
This commit is contained in:
smoogipoo 2019-03-05 16:02:07 +09:00
parent 7077e405ab
commit 76aca738a9

View File

@ -116,8 +116,8 @@ namespace osu.Game.Overlays.Direct
{
statusContainer = new FillFlowContainer
{
AutoSizeAxes = Axes.X,
Margin = new MarginPadding { Vertical = 8, Right = 5 },
AutoSizeAxes = Axes.Both,
Margin = new MarginPadding { Vertical = vertical_padding, Horizontal = 5 },
Spacing = new Vector2(5),
},
new FillFlowContainer
@ -223,8 +223,8 @@ namespace osu.Game.Overlays.Direct
statusContainer.Add(new BeatmapSetOnlineStatusPill
{
TextSize = 11,
TextPadding = new MarginPadding { Vertical = 2, Horizontal = 8 },
TextSize = 12,
TextPadding = new MarginPadding { Horizontal = 10, Vertical = 5 },
Status = SetInfo.OnlineInfo?.Status ?? BeatmapSetOnlineStatus.None,
});
}