1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 02:53:38 +08:00

Fix slider updating glow when disabled

This commit is contained in:
Dean Herbert
2022-11-04 18:52:32 +09:00
Unverified
parent a16540dc6d
commit a2fdad4afc
@@ -159,7 +159,8 @@ namespace osu.Game.Graphics.UserInterface
protected override bool OnHover(HoverEvent e)
{
updateGlow();
if (!Current.Disabled)
updateGlow();
return base.OnHover(e);
}