1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 20:25:39 +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() protected void InvalidateScrollPosition()
{ {
lastKnownScroll = null; Schedule(() =>
lastClickedSection = null; {
lastKnownScroll = null;
lastClickedSection = null;
});
} }
protected override void UpdateAfterChildren() protected override void UpdateAfterChildren()