1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 22:27:25 +08:00

Merge pull request #17931 from peppy/revert-schedule-revert

Fix regression in settings filter display
This commit is contained in:
Dan Balasescu 2022-04-22 22:03:42 +09:00 committed by GitHub
commit b283586f7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -195,8 +195,11 @@ namespace osu.Game.Graphics.Containers
protected void InvalidateScrollPosition()
{
lastKnownScroll = null;
lastClickedSection = null;
Schedule(() =>
{
lastKnownScroll = null;
lastClickedSection = null;
});
}
protected override void UpdateAfterChildren()