mirror of https://github.com/ppy/osu
Fix null check
This commit is contained in:
parent
2a075065d8
commit
7dd11fc5bf
|
@ -78,7 +78,7 @@ private void createTest(Func<Drawable> createContent) => AddStep("create trail",
|
|||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
Size = new Vector2(0.8f),
|
||||
Child = new MovingCursorInputManager { Child = createContent?.Invoke() }
|
||||
Child = new MovingCursorInputManager { Child = createContent() }
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue