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

Fix slider updating glow when disabled

This commit is contained in:
Dean Herbert 2022-11-04 18:52:32 +09:00
parent a16540dc6d
commit a2fdad4afc

View File

@ -159,7 +159,8 @@ namespace osu.Game.Graphics.UserInterface
protected override bool OnHover(HoverEvent e)
{
updateGlow();
if (!Current.Disabled)
updateGlow();
return base.OnHover(e);
}