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

Remove one more unnecessary schedule

This commit is contained in:
Dean Herbert 2022-04-22 15:32:23 +09:00
parent 06594ca0c8
commit f282e5b013

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()