1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:23:00 +08:00

Allow LoadingLayer's spinning circle to scale smaller than before

This commit is contained in:
Dean Herbert 2022-08-09 15:34:11 +09:00
parent 2f0e80e726
commit c7313ac371

View File

@ -83,7 +83,7 @@ namespace osu.Game.Graphics.UserInterface
{
base.Update();
MainContents.Size = new Vector2(Math.Clamp(Math.Min(DrawWidth, DrawHeight) * 0.25f, 30, 100));
MainContents.Size = new Vector2(Math.Clamp(Math.Min(DrawWidth, DrawHeight) * 0.25f, 20, 100));
}
}
}