Fix null check

This commit is contained in:
Dean Herbert 2023-10-25 17:55:55 +09:00
parent 2a075065d8
commit 7dd11fc5bf
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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() }
});
});