This commit is contained in:
Rob Lourens
2022-01-27 17:19:38 -08:00
parent 579c116df7
commit 2076c0a5db
@@ -42,6 +42,7 @@ export class ExecutionEditorProgressController extends Disposable implements INo
.filter(exe => exe.state === NotebookCellExecutionState.Executing);
const executionIsVisible = (exe: INotebookCellExecution) => {
for (const range of this._notebookEditor.visibleRanges) {
range.end++;
for (const cell of this._notebookEditor.getCellsInRange(range)) {
if (cell.handle === exe.cellHandle) {
return true;