mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 21:07:18 +09:00
Reverts a small bandaid fix that's no longer necessary relating to the order in which osulogo is initialised.
This commit is contained in:
parent
3c297064b6
commit
3b1ef0b991
@ -50,12 +50,6 @@ namespace osu.Game.GameModes.Menu
|
|||||||
{
|
{
|
||||||
base.Load();
|
base.Load();
|
||||||
|
|
||||||
osuLogo = new OsuLogo(onOsuLogo)
|
|
||||||
{
|
|
||||||
Origin = Anchor.Centre,
|
|
||||||
Anchor = Anchor.Centre
|
|
||||||
};
|
|
||||||
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
buttonArea = new Container
|
buttonArea = new Container
|
||||||
@ -89,7 +83,11 @@ namespace osu.Game.GameModes.Menu
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
osuLogo
|
osuLogo = new OsuLogo(onOsuLogo)
|
||||||
|
{
|
||||||
|
Origin = Anchor.Centre,
|
||||||
|
Anchor = Anchor.Centre
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
buttonFlow.Position = new Vector2(wedge_width * 2 - (button_width + osuLogo.SizeForFlow / 4), 0);
|
buttonFlow.Position = new Vector2(wedge_width * 2 - (button_width + osuLogo.SizeForFlow / 4), 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user