From 7f03ec6f7a48791d8027761b22773b454fc52478 Mon Sep 17 00:00:00 2001 From: Peng Lyu Date: Mon, 10 Apr 2023 07:22:25 -0700 Subject: [PATCH] Fix microsoft/vscode-jupyter#12738, microsoft/vscode-jupyter#13263. Update editor context on markdown preview. (#179569) --- .../workbench/contrib/notebook/browser/notebookEditorWidget.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts b/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts index bb112d718b11b..d85613e49676b 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts @@ -2336,6 +2336,7 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD } } this._list.focusView(); + this.updateEditorFocus(); } }