mirror of
https://github.com/ppy/osu
synced 2024-12-14 19:06:07 +00: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);
|
||||
}
|
||||
|
||||
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)
|
||||
AddArbitraryDrawable(t);
|
||||
|
Loading…
Reference in New Issue
Block a user