1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-31 15:50:47 +08:00

Fix code quality

This commit is contained in:
Dean Herbert
2019-10-31 17:50:06 +09:00
Unverified
parent 7207209404
commit 83abb845b6
@@ -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;