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