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