1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 04:02:59 +08:00

Merge pull request #23401 from peppy/fix-break-overlay-glow-cutoff

Fix break overlay arrows' glow getting cut off at lower resolutions
This commit is contained in:
Bartłomiej Dach 2023-05-05 20:12:34 +02:00 committed by GitHub
commit 3b37a421e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ namespace osu.Game.Screens.Play.Break
set
{
icon.Size = value;
base.Size = value + BlurSigma * 2.5f;
base.Size = value + BlurSigma * 5;
ForceRedraw();
}
get => base.Size;