From 71529d1a673552802af559abdea0f99c88ce51b4 Mon Sep 17 00:00:00 2001 From: Joseph Madamba Date: Fri, 4 Jul 2025 13:27:23 -0700 Subject: [PATCH] Fix song select group count pills shaking when expanding/collapsing --- osu.Game/Screens/SelectV2/PanelGroup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/SelectV2/PanelGroup.cs b/osu.Game/Screens/SelectV2/PanelGroup.cs index c0c4676a30..b7288f1da4 100644 --- a/osu.Game/Screens/SelectV2/PanelGroup.cs +++ b/osu.Game/Screens/SelectV2/PanelGroup.cs @@ -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;