Skip to content

Commit

Permalink
Update PerformanceGallery.cs
Browse files Browse the repository at this point in the history
Co-authored-by: MartyIX <[email protected]>
  • Loading branch information
MikeAlhayek and MartyIX authored Jul 24, 2024
1 parent ab96547 commit 9dddf80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ void HandleRenderComplete(PerformanceTracker obj)

void NextButton_Clicked(object sender, EventArgs e)
{
if (_TestCases == null || _TestCases.Count == 0 || _TestNumber + 1 > _TestCases.Count)
if (_TestCases is null || _TestCases.Count == 0 || _TestNumber + 1 > _TestCases.Count)
return;

ViewModel.View = null;
Expand Down

0 comments on commit 9dddf80

Please sign in to comment.