1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:12:54 +08:00

Do not make the name confusing.

This commit is contained in:
Huo Yaoyuan 2017-05-21 03:02:51 +08:00
parent 72621c81dc
commit 201b44dbf1

View File

@ -57,7 +57,7 @@ namespace osu.Game.Graphics.Containers
public Bindable<Drawable> SelectedSection { get; } = new Bindable<Drawable>(); public Bindable<Drawable> SelectedSection { get; } = new Bindable<Drawable>();
protected virtual Container<Drawable> CreateSectionsContainer() protected virtual Container<Drawable> CreateScrollContentContainer()
=> new FillFlowContainer => new FillFlowContainer
{ {
Direction = FillDirection.Vertical, Direction = FillDirection.Vertical,
@ -103,7 +103,7 @@ namespace osu.Game.Graphics.Containers
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Masking = false, Masking = false,
Children = new Drawable[] { sectionsContainer = CreateSectionsContainer() } Children = new Drawable[] { sectionsContainer = CreateScrollContentContainer() }
}); });
} }