From 76aca738a916ce21f73a8ca7d10cee6196706952 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Tue, 5 Mar 2019 16:02:07 +0900 Subject: [PATCH] Revert "Use same size labels from song select" This reverts commit 7077e405ab4d55bda7874af558150e8b901ff76f. --- osu.Game/Overlays/Direct/DirectListPanel.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/osu.Game/Overlays/Direct/DirectListPanel.cs b/osu.Game/Overlays/Direct/DirectListPanel.cs index 829f672dbe..09e923acd7 100644 --- a/osu.Game/Overlays/Direct/DirectListPanel.cs +++ b/osu.Game/Overlays/Direct/DirectListPanel.cs @@ -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, }); }