1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

replace SpriteText with OsuSpriteText

This commit is contained in:
Jorolf 2017-07-17 21:12:50 +02:00
parent 80dc888769
commit 9c70d03a33

View File

@ -498,7 +498,7 @@ namespace osu.Game.Overlays.Profile
public void AddLink(string text, string url) => AddText(text, link => ((SpriteLink)link).Url = url);
private class SpriteLink : SpriteText
private class SpriteLink : OsuSpriteText
{
public override bool HandleInput => Url != null;
@ -510,7 +510,6 @@ namespace osu.Game.Overlays.Profile
return true;
}
}
}
}
}