1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:07:25 +08:00

Fix nub glow color not having 0 alpha when being set

This commit is contained in:
Joseph Madamba 2021-08-19 20:06:25 -07:00
parent 0c978bf9e9
commit 1e02d61b85

View File

@ -149,7 +149,7 @@ namespace osu.Game.Graphics.UserInterface
glowColour = value;
var effect = EdgeEffect;
effect.Colour = value;
effect.Colour = value.Opacity(0);
EdgeEffect = effect;
}
}