diff --git a/osu.Game/Graphics/Containers/SectionsContainer.cs b/osu.Game/Graphics/Containers/SectionsContainer.cs index 617c7eeb2c..cee7bb6011 100644 --- a/osu.Game/Graphics/Containers/SectionsContainer.cs +++ b/osu.Game/Graphics/Containers/SectionsContainer.cs @@ -162,7 +162,8 @@ namespace osu.Game.Graphics.Containers updateSectionsMargin(); } - float currentScroll = Math.Max(0, scrollContainer.Current); + float currentScroll = scrollContainer.Current; + if (currentScroll != lastKnownScroll) { lastKnownScroll = currentScroll;