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