Disable scroll user scroll controls in list

This commit is contained in:
smoogipoo
2020-05-22 20:39:02 +09:00
parent 6bcc4c95cc
commit 80388feac4
2 changed files with 46 additions and 27 deletions

View File

@ -149,6 +149,10 @@ namespace osu.Game.Screens.Ranking
base.UpdateAfterChildren();
}
public override bool HandlePositionalInput => false;
public override bool HandleNonPositionalInput => false;
}
}
}