1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 10:47:45 +08:00

Merge pull request #1127 from MrTheMake/onscreendisplay-fix

Fix unlit initial state of the OnScreenDisplay
This commit is contained in:
Dean Herbert 2017-08-18 11:12:42 +09:00 committed by GitHub
commit 34c1834d38

View File

@ -258,7 +258,10 @@ namespace osu.Game.Overlays
Type = EdgeEffectType.Glow,
Radius = 8,
};
}
protected override void LoadComplete()
{
updateGlow();
FinishTransforms(true);
}