Made the Link's OnClick() Method return true

This commit is contained in:
FreezyLemon
2017-12-19 19:37:43 +01:00
parent 4f8bec8dfc
commit 270d81f816

View File

@ -16,7 +16,7 @@ namespace osu.Game.Graphics.Sprites
protected override bool OnClick(InputState state)
{
OnLinkClicked();
return base.OnClick(state);
return true;
}
private string url;