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);
}