Fix taiko right background not scaling with the playfield as intended.

This commit is contained in:
smoogipooo 2017-05-11 17:18:22 +09:00
parent 6fd95e0c52
commit 6cc54773e8

View File

@ -53,6 +53,12 @@ namespace osu.Game.Rulesets.Taiko.UI
public TaikoPlayfield()
{
AddInternal(new Drawable[]
{
new ScaleFixContainer
{
RelativeSizeAxes = Axes.X,
Height = DEFAULT_PLAYFIELD_HEIGHT,
Children = new[]
{
rightBackgroundContainer = new Container
{
@ -75,12 +81,6 @@ namespace osu.Game.Rulesets.Taiko.UI
},
}
},
new ScaleFixContainer
{
RelativeSizeAxes = Axes.X,
Height = DEFAULT_PLAYFIELD_HEIGHT,
Children = new[]
{
new Container
{
Name = "Transparent playfield elements",