1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-19 01:17:19 +08:00

remove onclick in toc entry

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-06-05 18:30:28 +07:00
parent c099751ad1
commit 958bddc8cb
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -8,7 +8,6 @@ using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Containers.Markdown;
using osu.Framework.Input.Events;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
@ -109,12 +108,6 @@ namespace osu.Game.Overlays.Wiki
HoverColour = colourProvider.Light1;
Action = () => scrollContainer.ScrollTo(target);
}
protected override bool OnClick(ClickEvent e)
{
IdleColour = colourProvider.Light1;
return base.OnClick(e);
}
}
}
}