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 43a1026 commit b16b467Copy full SHA for b16b467
src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.ts
@@ -666,9 +666,7 @@ export class CellDragAndDropController extends Disposable {
666
}
667
668
private async moveCell(draggedCell: ICellViewModel, ontoCell: ICellViewModel, direction: 'above' | 'below') {
669
- const editState = draggedCell.editState;
670
await this.notebookEditor.moveCell(draggedCell, ontoCell, direction);
671
- this.notebookEditor.focusNotebookCell(draggedCell, editState === CellEditState.Editing ? 'editor' : 'container');
672
673
674
private copyCell(draggedCell: ICellViewModel, ontoCell: ICellViewModel, direction: 'above' | 'below') {
0 commit comments