From 201b44dbf1f9421885d65f59eec11b3ca40f1182 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Sun, 21 May 2017 03:02:51 +0800 Subject: [PATCH] Do not make the name confusing. --- osu.Game/Graphics/Containers/SectionsContainer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Graphics/Containers/SectionsContainer.cs b/osu.Game/Graphics/Containers/SectionsContainer.cs index 768141511c..1cf1219941 100644 --- a/osu.Game/Graphics/Containers/SectionsContainer.cs +++ b/osu.Game/Graphics/Containers/SectionsContainer.cs @@ -57,7 +57,7 @@ namespace osu.Game.Graphics.Containers public Bindable SelectedSection { get; } = new Bindable(); - protected virtual Container CreateSectionsContainer() + protected virtual Container CreateScrollContentContainer() => new FillFlowContainer { Direction = FillDirection.Vertical, @@ -103,7 +103,7 @@ namespace osu.Game.Graphics.Containers { RelativeSizeAxes = Axes.Both, Masking = false, - Children = new Drawable[] { sectionsContainer = CreateSectionsContainer() } + Children = new Drawable[] { sectionsContainer = CreateScrollContentContainer() } }); }