Merge pull request #14403 from Joehuu/fix-nub-glow

Fix nub glow color not having 0 alpha when being set
This commit is contained in:
Dean Herbert
2021-08-20 15:07:30 +09:00
committed by GitHub

View File

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