1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:42:55 +08:00

Fix osu! logo being mispositioned in song select on very wide resolutions

This commit is contained in:
Dean Herbert 2024-01-29 20:45:51 +09:00
parent 811b31386b
commit f2546d72c2
No known key found for this signature in database

View File

@ -642,7 +642,11 @@ namespace osu.Game.Screens.Select
{
base.LogoArriving(logo, resuming);
Vector2 position = new Vector2(0.95f, 0.96f);
logo.Anchor = Anchor.BottomRight;
logo.Origin = Anchor.Centre;
logo.RelativePositionAxes = Axes.None;
Vector2 position = new Vector2(-76, -36);
if (logo.Alpha > 0.8f)
{