Merge pull request #17823 from peppy/settings-filter-fixes

Fix incorrect settings state if searching too quickly (during load process)
This commit is contained in:
Dan Balasescu
2022-04-22 16:38:41 +09:00
committed by GitHub
5 changed files with 36 additions and 19 deletions

View File

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