Fix origin specifications using incorrect flags

This commit is contained in:
Dean Herbert 2021-05-20 01:53:24 +09:00
parent 363aec8179
commit 00ed699340
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ private void load(OsuColour colours)
colourBarsEarly = new Container
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.x2,
Origin = Anchor.TopRight,
RelativeSizeAxes = Axes.Both,
Height = 0.5f,
Scale = new Vector2(1, -1),
@ -93,7 +93,7 @@ private void load(OsuColour colours)
colourBarsLate = new Container
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.x2,
Origin = Anchor.TopRight,
RelativeSizeAxes = Axes.Both,
Height = 0.5f,
},