diff --git a/osu.Game/Graphics/Sprites/OsuLinkSpriteText.cs b/osu.Game/Graphics/Sprites/OsuLinkSpriteText.cs index d99562092d..ad5045ff10 100644 --- a/osu.Game/Graphics/Sprites/OsuLinkSpriteText.cs +++ b/osu.Game/Graphics/Sprites/OsuLinkSpriteText.cs @@ -51,7 +51,12 @@ namespace osu.Game.Graphics.Sprites if (!string.IsNullOrEmpty(value)) { url = value; + content.Action = onClickAction; + + // For inheriting classes + if (Content is OsuHoverContainer hover) + hover.Action = onClickAction; } } }