mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 13:32:54 +08:00
Fix one more null issue
This commit is contained in:
parent
145e42928b
commit
3668f1861f
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user