1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Fix code quality

This commit is contained in:
Dean Herbert 2019-10-31 17:50:06 +09:00
parent 7207209404
commit 83abb845b6

View File

@ -74,7 +74,13 @@ namespace osu.Game.Graphics.Containers
{
RelativeSizeAxes = Axes.Both,
TooltipText = tooltipText ?? (url != text ? url : string.Empty),
Action = action ?? (() => game.HandleLink(url, linkType, linkArgument)),
Action = () =>
{
if (action != null)
action();
else
game.HandleLink(url, linkType, linkArgument);
},
});
return drawables;