1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:47:29 +08:00

Fix differing anchor specs on statistics panel flow items

This commit is contained in:
Bartłomiej Dach 2023-07-13 20:00:25 +02:00
parent d5912165e9
commit 20bde40ce2
No known key found for this signature in database

View File

@ -157,8 +157,8 @@ namespace osu.Game.Screens.Ranking.Statistics
flow.Add(new StatisticItemContainer(item)
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
});
}