We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed3f144 commit e7d0ff5Copy full SHA for e7d0ff5
FineCodeCoverage/Core/FCCEngine.cs
@@ -118,6 +118,7 @@ public void StopCoverage()
118
119
private CancellationToken Reset()
120
{
121
+ ClearUI();
122
StopCoverage();
123
124
cancellationTokenSource = new CancellationTokenSource();
@@ -240,7 +241,7 @@ private void ReloadCoverageTaskContinuation(System.Threading.Tasks.Task<(List<Co
240
241
case System.Threading.Tasks.TaskStatus.Faulted:
242
LogReloadCoverageStatus(ReloadCoverageStatus.Error);
243
logger.Log(t.Exception.InnerExceptions[0]);
- UpdateUI(null, null);
244
245
break;
246
case System.Threading.Tasks.TaskStatus.RanToCompletion:
247
LogReloadCoverageStatus(ReloadCoverageStatus.Done);
0 commit comments