mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Fix one more null issue
This commit is contained in:
@ -70,7 +70,7 @@ namespace osu.Game.Graphics.Containers
|
|||||||
createLink(spriteText.Yield(), new LinkDetails(action, argument), tooltipText);
|
createLink(spriteText.Yield(), new LinkDetails(action, argument), tooltipText);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddLink(IEnumerable<SpriteText> text, LinkAction action = LinkAction.External, string linkArgument = null, string tooltipText = null)
|
public void AddLink(IEnumerable<SpriteText> text, LinkAction action, string linkArgument, string tooltipText = null)
|
||||||
{
|
{
|
||||||
foreach (var t in text)
|
foreach (var t in text)
|
||||||
AddArbitraryDrawable(t);
|
AddArbitraryDrawable(t);
|
||||||
|
Reference in New Issue
Block a user