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 579c116 commit 2076c0aCopy full SHA for 2076c0a
src/vs/workbench/contrib/notebook/browser/contrib/execute/executionEditorProgress.ts
@@ -42,6 +42,7 @@ export class ExecutionEditorProgressController extends Disposable implements INo
42
.filter(exe => exe.state === NotebookCellExecutionState.Executing);
43
const executionIsVisible = (exe: INotebookCellExecution) => {
44
for (const range of this._notebookEditor.visibleRanges) {
45
+ range.end++;
46
for (const cell of this._notebookEditor.getCellsInRange(range)) {
47
if (cell.handle === exe.cellHandle) {
48
return true;
0 commit comments