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

Rename double-container variable name

This commit is contained in:
Dean Herbert 2022-03-13 16:10:06 +09:00
parent d1a9b88fe7
commit f95e753adb

View File

@ -42,7 +42,7 @@ namespace osu.Game.Skinning.Editor
private bool hasBegunMutating;
private Container blueprintContainerContainer;
private Container content;
public SkinEditor(Drawable targetScreen)
{
@ -115,7 +115,7 @@ namespace osu.Game.Skinning.Editor
Origin = Anchor.CentreLeft,
RequestPlacement = placeComponent
},
blueprintContainerContainer = new Container
content = new Container
{
RelativeSizeAxes = Axes.Both,
},
@ -153,7 +153,7 @@ namespace osu.Game.Skinning.Editor
void loadBlueprintContainer()
{
blueprintContainerContainer.Children = new Drawable[]
content.Children = new Drawable[]
{
new SkinBlueprintContainer(targetScreen),
};