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 dde6182 commit 7ea0ab8Copy full SHA for 7ea0ab8
Files/ViewModels/ItemViewModel.cs
@@ -1815,6 +1815,7 @@ private async void ProcessOperationQueue(CancellationToken cancellationToken)
1815
if (await operationEvent.WaitAsync(200, cancellationToken))
1816
{
1817
operationEvent.Reset();
1818
+ itemLoadEvent.Reset();
1819
while (operationQueue.TryDequeue(out var operation))
1820
1821
if (cancellationToken.IsCancellationRequested) break;
@@ -1851,6 +1852,8 @@ private async void ProcessOperationQueue(CancellationToken cancellationToken)
1851
1852
anyEdits = false;
1853
}
1854
1855
+
1856
+ itemLoadEvent.Set();
1857
1858
1859
if (anyEdits && sampler.CheckNow())
0 commit comments