rename customisation container class

This commit is contained in:
Leon Gebler
2020-10-13 19:25:42 +02:00
parent 28d3295f9f
commit 3fd913b13f
2 changed files with 4 additions and 4 deletions

View File

@ -16,11 +16,11 @@ using osuTK.Graphics;
namespace osu.Game.Overlays.Mods namespace osu.Game.Overlays.Mods
{ {
public class CModSettingsContainer : Container public class ModCustomisationContainer : Container
{ {
private readonly FillFlowContainer<ModControlSection> modSettingsContent; private readonly FillFlowContainer<ModControlSection> modSettingsContent;
public CModSettingsContainer() public ModCustomisationContainer()
{ {
Children = new Drawable[] Children = new Drawable[]
{ {

View File

@ -44,7 +44,7 @@ namespace osu.Game.Overlays.Mods
protected readonly FillFlowContainer<ModSection> ModSectionsContainer; protected readonly FillFlowContainer<ModSection> ModSectionsContainer;
protected readonly CModSettingsContainer ModSettingsContainer; protected readonly ModCustomisationContainer ModSettingsContainer;
public readonly Bindable<IReadOnlyList<Mod>> SelectedMods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>()); public readonly Bindable<IReadOnlyList<Mod>> SelectedMods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
@ -281,7 +281,7 @@ namespace osu.Game.Overlays.Mods
}, },
}, },
}, },
ModSettingsContainer = new CModSettingsContainer ModSettingsContainer = new ModCustomisationContainer
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Anchor = Anchor.BottomRight, Anchor = Anchor.BottomRight,