1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 18:13:18 +08:00

Merge pull request #34028 from Joehuu/fix-group-count-pill-shaking

Fix song select group count pills shaking when expanding/collapsing
This commit is contained in:
Dean Herbert
2025-07-05 11:36:56 +09:00
committed by GitHub
Unverified
+2 -2
View File
@@ -150,9 +150,9 @@ namespace osu.Game.Screens.SelectV2
countText.Text = Item.NestedItemCount.ToString("N0");
}
protected override void Update()
protected override void UpdateAfterChildren()
{
base.Update();
base.UpdateAfterChildren();
// Move the count pill in the opposite direction to keep it pinned to the screen regardless of the X position of TopLevelContent.
countPill.X = -TopLevelContent.X;