1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 06:39:53 +08:00

Fix padding not considered in sizing

This commit is contained in:
Dan Balasescu
2025-09-25 11:43:34 +09:00
Unverified
parent f38162c550
commit 798f6bdcc7
+1 -1
View File
@@ -396,7 +396,7 @@ namespace osu.Game.Screens.SelectV2
{
base.Update();
detailsArea.Height = wedgesContainer.DrawHeight - titleWedge.LayoutSize.Y - 4;
detailsArea.Height = wedgesContainer.ChildSize.Y - titleWedge.LayoutSize.Y - 4;
float widescreenBonusWidth = Math.Max(0, DrawWidth / DrawHeight - 2f);