mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Fix #141477
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user