1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 15:27:20 +08:00

Change scroll container subclass name to hopefully read better

This commit is contained in:
Dean Herbert 2021-08-13 14:46:28 +09:00
parent e84224f64c
commit 641d57e5e1

View File

@ -43,7 +43,7 @@ namespace osu.Game.Screens.Play.HUD
InternalChildren = new Drawable[]
{
scroll = new ManualScrollScrollContainer
scroll = new InputDisabledScrollContainer
{
RelativeSizeAxes = Axes.Both,
Child = Flow = new FillFlowContainer<GameplayLeaderboardScore>
@ -174,9 +174,9 @@ namespace osu.Game.Screens.Play.HUD
sorting.Validate();
}
private class ManualScrollScrollContainer : OsuScrollContainer
private class InputDisabledScrollContainer : OsuScrollContainer
{
public ManualScrollScrollContainer()
public InputDisabledScrollContainer()
{
ScrollbarVisible = false;
}