Skip to content

Commit cf1b357

Browse files
committed
1 parent b858b34 commit cf1b357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/notebook/browser/contrib/coreActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ abstract class InsertCellCommand extends NotebookAction {
510510
}
511511

512512
async runWithContext(accessor: ServicesAccessor, context: INotebookActionContext): Promise<void> {
513-
const newCell = context.notebookEditor.insertNotebookCell(context.cell, this.kind, this.direction, undefined, context.ui);
513+
const newCell = context.notebookEditor.insertNotebookCell(context.cell, this.kind, this.direction, undefined, true);
514514
if (newCell) {
515515
context.notebookEditor.focusNotebookCell(newCell, 'editor');
516516
}

0 commit comments

Comments
 (0)